function gotostate() {
if (document.form_state.statename.value == ""){
alert("Select State");
return false;
}
else {
var selstate = document.form_state.statename.value;
getUrlvalue = document.form_state.statename.options[document.form_state.statename.options.selectedIndex].value;
document.form_state.action = getUrlvalue;
document.form_state.submit();
return true;
document.form_state.submit();
}
}