function chk_pref(){
    check_flg = false;
    if (document.kaitori_form["address"].value) {
        check_flg = true;
    }

    if (check_flg) {
        document.kaitori_form.submit();
        return true;
    } else {
        alert('都道府県を選択してください');
        return false;
    }
}