$(function() {

	// 初期条件

	// 市・区で絞り込む表示・非表示
	dispCity();

});


// 市・区で絞り込む表示・非表示
function dispCity() {

	var value;
	value = $("select[name=Prefecture]").val();

	// 「東京」選択時は市・区絞り込む表示
	if (value == 13) {
		$('#city').show();
		$('#PrefectureButton').hide();
		$('#CityButton').show();
	} else if (value == 0) {
		$('#city').hide();
		$('#PrefectureButton').hide();
		$('#CityButton').hide();
	} else {
		$('#city').hide();
		$('#PrefectureButton').show();
		$('#CityButton').hide();
	}

}

// ロケーション切り替え
function pageMove() {

	var value;
	value = $("select[name=Prefecture]").val();

	location.href=value;
}
function pageMove2() {

	var value;
	value = $("select[name=City]").val();

	location.href=value;
}
