	function chgCountry()	
	{
		//alert(document.fexist.Country.value);
		if(document.frmnew.country.options[document.frmnew.country.selectedIndex].value == "United States of America")
		{
			document.frmnew.State.disabled = false;
			document.frmnew.txtState.style.visibility = 'hidden';
			document.frmnew.txtState.disabled =true;	
			document.frmnew.State.focus;

		}
		else	
		{			
			document.frmnew.State.disabled = true;	
			document.frmnew.txtState.disabled = false;					
			document.frmnew.txtState.style.visibility = 'visible';						
			document.frmnew.State.focus;

		}	
	}


