$(function(){
	$("#first_select").change(function(){ // <select id="first_select"> の値が変化したら
		var pref_path = "/studio/wp-content/themes/child-studio/railway/xml/" + this.value + ".xml"; // first_select のオプションの値(value)
		$("#second_select").load(pref_path); // <select id="second_select"> 部分にpref_pathに書かれた、htmlの断片を入れる
	});
	// プルダウンをさらに連動させたい場合
    $("#second_select").change(function(){
    	    //var pref_href = "http://www.yoga-gene.com/studio/26001/2600104";
    	    var pref_href = "http://www.yoga-gene.com/studio/" + $("#first_select").val() + "/" + this.value;
    	    document.location = pref_href;
    	});
    // 北海道
    $("#hokkaido_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/hokkaido/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 青森県
    $("#aomori_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/aomori/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 岩手県
    $("#iwate_select").change(function(){
			if(this.value !== "noregion"){			   
    	    var pref_href = "http://www.yoga-gene.com/studio/iwate/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 宮城県
    $("#miyagi_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/miyagi/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 秋田県
    $("#akita_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/akita/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 山形県
    $("#yamagata_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/yamagata/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 福島県
    $("#fukushima_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/fukushima/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 茨城県
    $("#ibaraki_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/ibaraki/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 栃木県
    $("#tochigi_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/tochigi/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 群馬県
    $("#gunma_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/gunma/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 埼玉県
    $("#saitama_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/saitama/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 千葉県
    $("#chiba_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/chiba/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 東京都
    $("#tokyo_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/tokyo/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 神奈川県
    $("#kanagawa_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/kanagawa/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 新潟県
    $("#niigata_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/niigata/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 富山県
    $("#toyama_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/toyama/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 石川県
    $("#ishikawa_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/ishikawa/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 福井県
    $("#fukui_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/fukui/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 山梨県
    $("#yamanashi_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/yamanashi/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 長野県
    $("#nagano_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/nagano/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 岐阜県
    $("#gifu_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/gifu/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 静岡県
    $("#shizuoka_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/shizuoka/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 愛知県
    $("#aichi_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/aichi/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 三重県
    $("#mie_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/mie/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 滋賀県
    $("#shiga_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/shiga/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 京都府
    $("#kyoto_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/kyoto/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 大阪府
    $("#osaka_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/osaka/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 兵庫県
    $("#hyogo_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/hyogo/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 奈良県
    $("#nara_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/nara/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 和歌山県
    $("#wakayama_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/wakayama/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 鳥取県
    $("#tottori_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/tottori/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 島根県
    $("#shimane_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/shimane/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 岡山県
    $("#okayama_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/okayama/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 広島県
    $("#hiroshima_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/hiroshima/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 山口県
    $("#yamaguchi_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/yamaguchi/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 徳島県
    $("#tokushima_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/tokushima/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 香川県
    $("#kagawa_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/kagawa/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 愛媛県
    $("#ehime_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/ehime/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 高知県
    $("#kochi_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/kochi/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 福岡県
    $("#fukuoka_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/fukuoka/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 佐賀県
    $("#saga_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/saga/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 長崎県
    $("#nagasaki_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/nagasaki/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 熊本県
    $("#kumamoto_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/kumamoto/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 大分県
    $("#oita_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/oita/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 宮崎県
    $("#miyazaki_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/miyazaki/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 鹿児島県
    $("#kagoshima_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/kagoshima/" + this.value;
    	    document.location = pref_href;
			}
    	});
    // 沖縄県
    $("#okinawa_select").change(function(){
			if(this.value !== "noregion"){
    	    var pref_href = "http://www.yoga-gene.com/studio/okinawa/" + this.value;
    	    document.location = pref_href;
			}
    	});
  });
