function checkStateForm()	{
	var states = document.states.state_code.value;
	if (states == '')	{
		alert('You must select a state to continue.');
	} else	{
		//document.states.submit();
        document.location = "/"+document.states.state_code.value + ".html";
    }
}
