function showStatesMenu(theform) {
	if (theform.country.options[theform.country.options.selectedIndex].value == "US") document.getElementById('usstates').style.display = 'block';
	else {
		document.getElementById('usstates').style.display = 'none'
		theform.us_states.options.selectedIndex = "select"	
	}
}