window.onload = function() {
	if (!document.getElementById) return false;
	
	//var popupform = document.getElementById("gotocity"); // the 'form' tag has an ID of 'gotostate"
	//popupform.className = "";  // get rid of the classname which has a CSS declaration of 'display:none;'
	
	var statepopup = document.getElementById("selectcity"); // the 'select' tag has an ID of 'statepopup'
	
	var stategobtn = document.getElementById("gotocitybtn");
	
	/*statepopup.onchange = function() {
		location = this.options[this.selectedIndex].value;
	};*/
	
	stategobtn.onclick = function() {
		location = statepopup.options[statepopup.selectedIndex].value;
	};
	
	
}