
 function stateOtherValue()
 {
	if(document.getElementById("State").value=="Other")
	{ document.getElementById("otherState").disabled=false;
		
	}
	else{
		document.getElementById("otherState").value="";
		document.getElementById("otherState").disabled=true;}
   CheckCountry();
 }
 
 
  function stateCheckfor()
 {
 if(document.getElementById("State").value=="Other")
	{
		document.getElementById("otherState").disabled=false;
	}
	
 
 }