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;
    }
}

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

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

