function goSearchKen(){

	var selectedKen = document.form1.KENCOMB.options[document.form1.KENCOMB.selectedIndex].value;

	if (selectedKen == ""){
		alert("都道府県をお選び下さい");
		return false;
	}

	document.form1.KENCODE.value = selectedKen;
	document.form1.CATEGORYCODE.value = "";

	document.form1.action="./shoplist.php";
	document.form1.enctype="application/x-www-form-urlencoded";
	document.form1.method="post";
	document.form1.submit();
	
}

function goSearchCategory(category){

	document.form1.KENCODE.value = "";
	document.form1.CATEGORYCODE.value = category;
	document.form1.action="./shoplist.php";
	document.form1.enctype="application/x-www-form-urlencoded";
	document.form1.method="post";
	document.form1.submit();
	
}

function killEnter(){
	return;
}
