function jump(val){

	if(val=="")
	{
		alert("選択してください");
	}else{
		location.href="./search_result?val=" + val;
	}
	return false;
}
