function cleanState(id) {
	var state;	
	state = document.getElementById(id);	
	
	if (state.value == "First Name")
	{	  	  	
		state.value = "";
	}

	if (state.value == "Last Name")
	{	  	  	
		state.value = "";
	}
	
	if (state.value == "Company")
	{	  	  	
	  	state.value = "";
	}
	
	  
	if (state.value == "Address")
	{	  	  	
	  	state.value = "";
	}
	  
	if (state.value == "City")
	{	  	  	
	  	state.value = "";
	}
	  
	if (state.value == "State")
	{	  	  	
	  	state.value = "";
	}
	  
	if (state.value == "Phone/Mobile")
	{	  	  		  	
		state.value = "";		
	}
	  
	if (state.value == "Email")
	{	  	  	
	  	state.value = "";
	}
	  
	if (state.value == "Comments")
	{	  	  	
	  	state.value = "";
	}
	
	state.style.color = "#3a3737";
}


function changeState(id) {
	var state;	
	state = document.getElementById(id);	
	
	if(id == 'first_name_id'){
		if(!(state.value))
		{
			state.value = "First Name";
		}
	}
    
	if(id == 'last_name_id'){
		if(!(state.value))
		{
			state.value = "Last Name";
		}
	}
    
	if(id == 'firm'){
		if(!(state.value))
		{
			state.value = "Company";
		}
	}
    
	if(id == 'address'){
		if(!(state.value))
		{
			state.value = "Address";
		}
	}
    
	if(id == 'city'){
		if(!(state.value))
		{
			state.value = "City";
		}
	}
    
	if(id == 'state'){
		if(!(state.value))
		{
			state.value = "State";
		}
	}
    
	if(id == 'contact_no'){
		if(!(state.value))
		{
			state.value = "Phone/Mobile";
		}
	}
    
	if(id == 'email'){
		if(!(state.value))
		{
			state.value = "Email";
		}
	}
    
	if(id == 'comments'){
		if(!(state.value))
		{
			state.value = "Comments";
		}
	}

	state.style.color = "#3a3737";
}
