	function form_submit() {
		// GET selected info from the pulldowns , create a real-url and submit that in an empty form to the human-readable url.
		// But that is ingenious master !
		// Yes it is.
		var myForm = document.getElementById("form_search");
		var myLocation = myForm.locatie.options[ myForm.locatie.selectedIndex ].value;
		var myCategory = myForm.categorie.options[ myForm.categorie.selectedIndex ].value;
		var myKeywords = (myForm.keyword.value);
		if (myKeywords == "") {
			myKeywords = "none";
		}
		url = "/jobportal/category/" + myCategory + "/location/" + myLocation + "/keywords/" + myKeywords;
		var myFormEmpty = document.getElementById("form_empty");
		myFormEmpty.action = url;
		myFormEmpty.submit();
		
	}
