	function formsubmit(theform)
	{
		var where = document.getElementById("selectbox").value;
		if (where == "none")
			alert("Please select Residential or Commercial");
		else
		{
			window.location = where + "_security_quote.php";
		}
	}
