function checkFields(){		
	var State = document.getElementById("State")
	var frmMain = document.getElementById("frmMain")
	if(State.value == ""){			
		alert("Sorry, you must select a State to continue.");			
		State.focus();
		return false;
	}	
	frmMain.submit();	
}
