
	
	function changeState(){
		if (document.form2.country.selectedIndex != 0) {
			if (document.form2.state.selectedIndex != 0)
		       	{document.form2.state.selectedIndex = 0;}
				
			if (document.form2.county.selectedIndex != 0)
		       	{document.form2.county.selectedIndex = 0;}
			}
		if (document.form2.country.selectedIndex == 0) {
			if (document.form2.state.selectedIndex != 1)
		       	{document.form2.state.selectedIndex = 1;}
				
			if (document.form2.county.selectedIndex != 1)
		       	{document.form2.county.selectedIndex = 1;}
			}
		}
	
	
	function changeCountry(){
		if (document.form2.state.selectedIndex != 0) {
			if (document.form2.country.selectedIndex != 0)
		       	{document.form2.country.selectedIndex = 0;}
			
			if (document.form2.county.selectedIndex != 1)
		       	{document.form2.county.selectedIndex = 1;}
			}
		if (document.form2.state.selectedIndex != 0) 
			{document.form2.county.selectedIndex = 1;}
		}
	
	
	
	

