// JavaScript Document
$(function(){
$('p.topSearchBtn').click(function(){
	var value = $("select[name=area]").children(':selected').val(); 
	if(value!=0){
           location.href = "/pref/"+value+".html";
	}else{
		alert("検索地域を選択してください。")
	}
return false;
});
});
