function gotoURL(url) {
	url = "quick-quote/index.jsf?state="+url.options[url.selectedIndex].value; //Get the value from the options of the drop down box
	if (url!=""){document.location.href = url;} //If the value is not empty go to the page defined in the value
} 