function toggleStateField(){
	//if the country select box shows US then show the select box for states.  
	if(document.f1.contactCountry.value == "United States"){
		document.getElementById('contactState').style.display = "block";
		document.getElementById('contactStateBox').style.display = "none";
	} else { //country is not equal to US so show a text box to input the state
		document.getElementById('contactStateBox').style.display = "block";
		document.getElementById('contactState').style.display = "none";
	}
	
}