/**
 * マップから探す用
 */

/**
 * pidチェック
 */
function checkPid(submit_button)
{
	var position = jQuery.trim(jQuery(submit_button).attr('class').replace("imgover", ""));
	var select_pid_box = jQuery("#ary" + position + "_pid > option:selected");
	if(select_pid_box.size() == 0)
	{
		alert('都道府県を選択してください');
		return false;
	}
	return true;
}