function buildURL() 
 {
 
 var state_index = document.select_state.state.selectedIndex;
 var state = document.select_state.state.options[ state_index ].value;
 var url = state;
	if (state=="none"){
	alert ("please select a state")
	return 0;
	}
	else {
 
	win = window.open(url,"state","toolbar=no,width=630,height=470,status=no,scrollbars=yes,resize=yes,menubar=no");
	 win.focus();}
}
