function getArea(the_form, my_area)
{
	if(my_area=="")
		my_area = "000";
	if(the_form.country.value == "201")//台北市
	{
		the_form.area.length = 13;
		the_form.area.options[0].value = "000";
		the_form.area.options[0].text = "不設限";
		the_form.area.options[1].value = "004";
		the_form.area.options[1].text = "大安區";
		the_form.area.options[2].value = "005";
		the_form.area.options[2].text = "中正區";
		the_form.area.options[3].value = "006";
		the_form.area.options[3].text = "大同區";
		the_form.area.options[4].value = "007";
		the_form.area.options[4].text = "北投區";
		the_form.area.options[5].value = "028";
		the_form.area.options[5].text = "萬華區";
		the_form.area.options[6].value = "029";
		the_form.area.options[6].text = "內湖區";
		the_form.area.options[7].value = "030";
		the_form.area.options[7].text = "松山區";
		the_form.area.options[8].value = "031";
		the_form.area.options[8].text = "中山區";
		the_form.area.options[9].value = "032";
		the_form.area.options[9].text = "信義區";
		the_form.area.options[10].value = "033";
		the_form.area.options[10].text = "士林區";
		the_form.area.options[11].value = "034";
		the_form.area.options[11].text = "南港區";
		the_form.area.options[12].value = "035";
		the_form.area.options[12].text = "文山區";
		for(i = 0; i < the_form.area.length; i++)
		{
			if(my_area==parseInt(the_form.area.options[i].value, 10))
			{
				the_form.area.options[i].selected=true;
				break;
			}
		}
		return;
	}
	if(the_form.country.value == "1006")//基隆市
	{
		the_form.area.length = 8;
		the_form.area.options[0].value = "000";
		the_form.area.options[0].text = "不設限";
		the_form.area.options[1].value = "036";
		the_form.area.options[1].text = "仁愛區";
		the_form.area.options[2].value = "037";
		the_form.area.options[2].text = "信義區";
		the_form.area.options[3].value = "038";
		the_form.area.options[3].text = "中正區";
		the_form.area.options[4].value = "039";
		the_form.area.options[4].text = "中山區";
		the_form.area.options[5].value = "040";
		the_form.area.options[5].text = "安樂區";
		the_form.area.options[6].value = "041";
		the_form.area.options[6].text = "暖暖區";
		the_form.area.options[7].value = "042";
		the_form.area.options[7].text = "七堵區";
		for(i = 0; i < the_form.area.length; i++)
		{
			if(my_area==parseInt(the_form.area.options[i].value, 10))
			{
				the_form.area.options[i].selected=true;
				break;
			}
		}
		return;
	}
	if(the_form.country.value == "1003")//台北縣
	{
		the_form.area.length = 30;
		the_form.area.options[0].value = "000";
		the_form.area.options[0].text = "不設限";
		the_form.area.options[1].value = "043";
		the_form.area.options[1].text = "萬里鄉";
		the_form.area.options[2].value = "044";
		the_form.area.options[2].text = "金山鄉";
		the_form.area.options[3].value = "045";
		the_form.area.options[3].text = "板橋市";
		the_form.area.options[4].value = "046";
		the_form.area.options[4].text = "汐止市";
		the_form.area.options[5].value = "047";
		the_form.area.options[5].text = "深坑鄉";
		the_form.area.options[6].value = "048";
		the_form.area.options[6].text = "石碇鄉";
		the_form.area.options[7].value = "049";
		the_form.area.options[7].text = "瑞芳鎮";
		the_form.area.options[8].value = "050";
		the_form.area.options[8].text = "平溪鄉";
		the_form.area.options[9].value = "051";
		the_form.area.options[9].text = "雙溪鄉";
		the_form.area.options[10].value = "052";
		the_form.area.options[10].text = "貢寮鄉";
		the_form.area.options[11].value = "053";
		the_form.area.options[11].text = "新店市";
		the_form.area.options[12].value = "054";
		the_form.area.options[12].text = "坪林鄉";
		the_form.area.options[13].value = "055";
		the_form.area.options[13].text = "烏來鄉";
		the_form.area.options[14].value = "056";
		the_form.area.options[14].text = "永和市";
		the_form.area.options[15].value = "057";
		the_form.area.options[15].text = "中和市";
		the_form.area.options[16].value = "058";
		the_form.area.options[16].text = "土城市";
		the_form.area.options[17].value = "059";
		the_form.area.options[17].text = "三峽鎮";
		the_form.area.options[18].value = "060";
		the_form.area.options[18].text = "樹林市";
		the_form.area.options[19].value = "061";
		the_form.area.options[19].text = "鶯歌鎮";
		the_form.area.options[20].value = "062";
		the_form.area.options[20].text = "三重市";
		the_form.area.options[21].value = "063";
		the_form.area.options[21].text = "新莊市";
		the_form.area.options[22].value = "064";
		the_form.area.options[22].text = "泰山鄉";
		the_form.area.options[23].value = "065";
		the_form.area.options[23].text = "林口鄉";
		the_form.area.options[24].value = "066";
		the_form.area.options[24].text = "蘆洲市";
		the_form.area.options[25].value = "067";
		the_form.area.options[25].text = "五股鄉";
		the_form.area.options[26].value = "068";
		the_form.area.options[26].text = "八里鄉";
		the_form.area.options[27].value = "069";
		the_form.area.options[27].text = "淡水鎮";
		the_form.area.options[28].value = "070";
		the_form.area.options[28].text = "三芝鄉";
		the_form.area.options[29].value = "071";
		the_form.area.options[29].text = "石門鄉";
		for(i = 0; i < the_form.area.length; i++)
		{
			if(my_area==parseInt(the_form.area.options[i].value, 10))
			{
				the_form.area.options[i].selected=true;
				break;
			}
		}
		return;
	}
	if(the_form.country.value == "1015")//宜蘭縣
	{
		the_form.area.length = 13;
		the_form.area.options[0].value = "000";
		the_form.area.options[0].text = "不設限";
		the_form.area.options[1].value = "072";
		the_form.area.options[1].text = "宜蘭市";
		the_form.area.options[2].value = "073";
		the_form.area.options[2].text = "頭城鎮";
		the_form.area.options[3].value = "074";
		the_form.area.options[3].text = "礁溪鄉";
		the_form.area.options[4].value = "075";
		the_form.area.options[4].text = "壯圍鄉";
		the_form.area.options[5].value = "076";
		the_form.area.options[5].text = "員山鄉";
		the_form.area.options[6].value = "077";
		the_form.area.options[6].text = "羅東鎮";
		the_form.area.options[7].value = "078";
		the_form.area.options[7].text = "三星鄉";
		the_form.area.options[8].value = "079";
		the_form.area.options[8].text = "大同鄉";
		the_form.area.options[9].value = "080";
		the_form.area.options[9].text = "五結鄉";
		the_form.area.options[10].value = "081";
		the_form.area.options[10].text = "冬山鄉";
		the_form.area.options[11].value = "082";
		the_form.area.options[11].text = "蘇澳鎮";
		the_form.area.options[12].value = "083";
		the_form.area.options[12].text = "南澳鄉";
		for(i = 0; i < the_form.area.length; i++)
		{
			if(my_area==parseInt(the_form.area.options[i].value, 10))
			{
				the_form.area.options[i].selected=true;
				break;
			}
		}
		return;
	}
	if(the_form.country.value == "1023")//新竹
	{
		the_form.area.length = 4;
		the_form.area.options[0].value = "000";
		the_form.area.options[0].text = "不設限";
		the_form.area.options[1].value = "391";
		the_form.area.options[1].text = "東區";
		the_form.area.options[2].value = "392";
		the_form.area.options[2].text = "香山區";
		the_form.area.options[3].value = "393";
		the_form.area.options[3].text = "北區";
		for(i = 0; i < the_form.area.length; i++)
		{
			if(my_area==parseInt(the_form.area.options[i].value, 10))
			{
				the_form.area.options[i].selected=true;
				break;
			}
		}
		return;
	}
	if(the_form.country.value == "1008")//新竹
	{
		the_form.area.length = 14;
		the_form.area.options[0].value = "000";
		the_form.area.options[0].text = "不設限";
		the_form.area.options[1].value = "085";
		the_form.area.options[1].text = "竹北市";
		the_form.area.options[2].value = "086";
		the_form.area.options[2].text = "湖口鄉";
		the_form.area.options[3].value = "087";
		the_form.area.options[3].text = "新豐鄉";
		the_form.area.options[4].value = "088";
		the_form.area.options[4].text = "新埔鎮";
		the_form.area.options[5].value = "089";
		the_form.area.options[5].text = "關西鎮";
		the_form.area.options[6].value = "090";
		the_form.area.options[6].text = "芎林鄉";
		the_form.area.options[7].value = "091";
		the_form.area.options[7].text = "寶山鄉";
		the_form.area.options[8].value = "092";
		the_form.area.options[8].text = "竹東鎮";
		the_form.area.options[9].value = "093";
		the_form.area.options[9].text = "五峰鄉";
		the_form.area.options[10].value = "094";
		the_form.area.options[10].text = "橫山鄉";
		the_form.area.options[11].value = "095";
		the_form.area.options[11].text = "尖石鄉";
		the_form.area.options[12].value = "096";
		the_form.area.options[12].text = "北埔鄉";
		the_form.area.options[13].value = "097";
		the_form.area.options[13].text = "峨眉鄉";
		for(i = 0; i < the_form.area.length; i++)
		{
			if(my_area==parseInt(the_form.area.options[i].value, 10))
			{
				the_form.area.options[i].selected=true;
				break;
			}
		}
		return;
	}
	if(the_form.country.value == "1007")//桃園縣
	{
		the_form.area.length = 14;
		the_form.area.options[0].value = "000";
		the_form.area.options[0].text = "不設限";
		the_form.area.options[1].value = "098";
		the_form.area.options[1].text = "中壢市";
		the_form.area.options[2].value = "099";
		the_form.area.options[2].text = "平鎮市";
		the_form.area.options[3].value = "100";
		the_form.area.options[3].text = "龍潭鄉";
		the_form.area.options[4].value = "101";
		the_form.area.options[4].text = "楊梅鎮";
		the_form.area.options[5].value = "102";
		the_form.area.options[5].text = "新屋鄉";
		the_form.area.options[6].value = "103";
		the_form.area.options[6].text = "觀音鄉";
		the_form.area.options[7].value = "104";
		the_form.area.options[7].text = "桃園市";
		the_form.area.options[8].value = "105";
		the_form.area.options[8].text = "龜山鄉";
		the_form.area.options[9].value = "106";
		the_form.area.options[9].text = "大溪鎮";
		the_form.area.options[10].value = "107";
		the_form.area.options[10].text = "復興鄉";
		the_form.area.options[11].value = "108";
		the_form.area.options[11].text = "大園鄉";
		the_form.area.options[12].value = "109";
		the_form.area.options[12].text = "蘆竹鄉";
		the_form.area.options[13].value = "396";
		the_form.area.options[13].text = "八德市";
		for(i = 0; i < the_form.area.length; i++)
		{
			if(my_area==parseInt(the_form.area.options[i].value, 10))
			{
				the_form.area.options[i].selected=true;
				break;
			}
		}
		return;
	}
	if(the_form.country.value == "1009")//苗粟縣
	{
		the_form.area.length = 19;
		the_form.area.options[0].value = "000";
		the_form.area.options[0].text = "不設限";
		the_form.area.options[1].value = "110";
		the_form.area.options[1].text = "竹南鎮";
		the_form.area.options[2].value = "111";
		the_form.area.options[2].text = "頭份鎮";
		the_form.area.options[3].value = "112";
		the_form.area.options[3].text = "三灣鄉";
		the_form.area.options[4].value = "113";
		the_form.area.options[4].text = "南庄鄉";
		the_form.area.options[5].value = "114";
		the_form.area.options[5].text = "獅潭鄉";
		the_form.area.options[6].value = "115";
		the_form.area.options[6].text = "後龍鎮";
		the_form.area.options[7].value = "116";
		the_form.area.options[7].text = "通霄鎮";
		the_form.area.options[8].value = "117";
		the_form.area.options[8].text = "苑裡鎮";
		the_form.area.options[9].value = "118";
		the_form.area.options[9].text = "苗栗市";
		the_form.area.options[10].value = "119";
		the_form.area.options[10].text = "造橋鄉";
		the_form.area.options[11].value = "120";
		the_form.area.options[11].text = "頭屋鄉";
		the_form.area.options[12].value = "121";
		the_form.area.options[12].text = "公館鄉";
		the_form.area.options[13].value = "122";
		the_form.area.options[13].text = "大湖鄉";
		the_form.area.options[14].value = "123";
		the_form.area.options[14].text = "泰安鄉";
		the_form.area.options[15].value = "124";
		the_form.area.options[15].text = "銅鑼鄉";
		the_form.area.options[16].value = "125";
		the_form.area.options[16].text = "三義鄉";
		the_form.area.options[17].value = "126";
		the_form.area.options[17].text = "西湖鄉";
		the_form.area.options[18].value = "127";
		the_form.area.options[18].text = "卓蘭鎮";
		for(i = 0; i < the_form.area.length; i++)
		{
			if(my_area==parseInt(the_form.area.options[i].value, 10))
			{
				the_form.area.options[i].selected=true;
				break;
			}
		}
		return;
	}
	if(the_form.country.value == "1020")//台中市
	{
		the_form.area.length = 9;
		the_form.area.options[0].value = "000";
		the_form.area.options[0].text = "不設限";
		the_form.area.options[1].value = "128";
		the_form.area.options[1].text = "中區";
		the_form.area.options[2].value = "129";
		the_form.area.options[2].text = "東區";
		the_form.area.options[3].value = "130";
		the_form.area.options[3].text = "南區";
		the_form.area.options[4].value = "131";
		the_form.area.options[4].text = "西區";
		the_form.area.options[5].value = "132";
		the_form.area.options[5].text = "北區";
		the_form.area.options[6].value = "133";
		the_form.area.options[6].text = "北屯區";
		the_form.area.options[7].value = "134";
		the_form.area.options[7].text = "西屯區";
		the_form.area.options[8].value = "135";
		the_form.area.options[8].text = "南屯區";
		for(i = 0; i < the_form.area.length; i++)
		{
			if(my_area==parseInt(the_form.area.options[i].value, 10))
			{
				the_form.area.options[i].selected=true;
				break;
			}
		}
		return;
	}
	if(the_form.country.value == "1000")//台中縣
	{
		the_form.area.length = 22;
		the_form.area.options[0].value = "000";
		the_form.area.options[0].text = "不設限";
		the_form.area.options[1].value = "136";
		the_form.area.options[1].text = "太平市";
		the_form.area.options[2].value = "137";
		the_form.area.options[2].text = "大里市";
		the_form.area.options[3].value = "138";
		the_form.area.options[3].text = "霧峰鄉";
		the_form.area.options[4].value = "139";
		the_form.area.options[4].text = "烏日鄉";
		the_form.area.options[5].value = "140";
		the_form.area.options[5].text = "豐原市";
		the_form.area.options[6].value = "141";
		the_form.area.options[6].text = "后里鄉";
		the_form.area.options[7].value = "142";
		the_form.area.options[7].text = "石岡鄉";
		the_form.area.options[8].value = "143";
		the_form.area.options[8].text = "東勢鎮";
		the_form.area.options[9].value = "144";
		the_form.area.options[9].text = "和平鄉";
		the_form.area.options[10].value = "145";
		the_form.area.options[10].text = "新社鄉";
		the_form.area.options[11].value = "146";
		the_form.area.options[11].text = "潭子鄉";
		the_form.area.options[12].value = "147";
		the_form.area.options[12].text = "大雅鄉";
		the_form.area.options[13].value = "148";
		the_form.area.options[13].text = "神岡鄉";
		the_form.area.options[14].value = "149";
		the_form.area.options[14].text = "大肚鄉";
		the_form.area.options[15].value = "150";
		the_form.area.options[15].text = "沙鹿鎮";
		the_form.area.options[16].value = "151";
		the_form.area.options[16].text = "龍井鄉";
		the_form.area.options[17].value = "152";
		the_form.area.options[17].text = "梧棲鎮";
		the_form.area.options[18].value = "153";
		the_form.area.options[18].text = "清水鎮";
		the_form.area.options[19].value = "154";
		the_form.area.options[19].text = "大甲鎮";
		the_form.area.options[20].value = "155";
		the_form.area.options[20].text = "外埔鄉";
		the_form.area.options[21].value = "156";
		the_form.area.options[21].text = "大安鄉";
		for(i = 0; i < the_form.area.length; i++)
		{
			if(my_area==parseInt(the_form.area.options[i].value, 10))
			{
				the_form.area.options[i].selected=true;
				break;
			}
		}
		return;
	}
	if(the_form.country.value == "1011")//彰化縣
	{
		the_form.area.length = 27;
		the_form.area.options[0].value = "000";
		the_form.area.options[0].text = "不設限";
		the_form.area.options[1].value = "157";
		the_form.area.options[1].text = "彰化市";
		the_form.area.options[2].value = "158";
		the_form.area.options[2].text = "芬園鄉";
		the_form.area.options[3].value = "159";
		the_form.area.options[3].text = "花壇鄉";
		the_form.area.options[4].value = "160";
		the_form.area.options[4].text = "秀水鄉";
		the_form.area.options[5].value = "161";
		the_form.area.options[5].text = "鹿港鎮";
		the_form.area.options[6].value = "162";
		the_form.area.options[6].text = "福興鄉";
		the_form.area.options[7].value = "163";
		the_form.area.options[7].text = "線西鄉";
		the_form.area.options[8].value = "164";
		the_form.area.options[8].text = "和美鎮";
		the_form.area.options[9].value = "165";
		the_form.area.options[9].text = "伸港鄉";
		the_form.area.options[10].value = "166";
		the_form.area.options[10].text = "員林鎮";
		the_form.area.options[11].value = "167";
		the_form.area.options[11].text = "社頭鄉";
		the_form.area.options[12].value = "168";
		the_form.area.options[12].text = "永靖鄉";
		the_form.area.options[13].value = "169";
		the_form.area.options[13].text = "埔心鄉";
		the_form.area.options[14].value = "170";
		the_form.area.options[14].text = "溪湖鎮";
		the_form.area.options[15].value = "171";
		the_form.area.options[15].text = "大村鄉";
		the_form.area.options[16].value = "172";
		the_form.area.options[16].text = "埔鹽鄉";
		the_form.area.options[17].value = "173";
		the_form.area.options[17].text = "田中鎮";
		the_form.area.options[18].value = "174";
		the_form.area.options[18].text = "北斗鎮";
		the_form.area.options[19].value = "175";
		the_form.area.options[19].text = "田尾鄉";
		the_form.area.options[20].value = "176";
		the_form.area.options[20].text = "埤頭鄉";
		the_form.area.options[21].value = "177";
		the_form.area.options[21].text = "溪州鄉";
		the_form.area.options[22].value = "178";
		the_form.area.options[22].text = "竹塘鄉";
		the_form.area.options[23].value = "179";
		the_form.area.options[23].text = "二林鎮";
		the_form.area.options[24].value = "180";
		the_form.area.options[24].text = "大城鄉";
		the_form.area.options[25].value = "181";
		the_form.area.options[25].text = "芳苑鄉";
		the_form.area.options[26].value = "182";
		the_form.area.options[26].text = "二水鄉";
		for(i = 0; i < the_form.area.length; i++)
		{
			if(my_area==parseInt(the_form.area.options[i].value, 10))
			{
				the_form.area.options[i].selected=true;
				break;
			}
		}
		return;
	}
	if(the_form.country.value == "1012")//南投縣
	{
		the_form.area.length = 14;
		the_form.area.options[0].value = "000";
		the_form.area.options[0].text = "不設限";
		the_form.area.options[1].value = "183";
		the_form.area.options[1].text = "南投市";
		the_form.area.options[2].value = "184";
		the_form.area.options[2].text = "中寮鄉";
		the_form.area.options[3].value = "185";
		the_form.area.options[3].text = "草屯鎮";
		the_form.area.options[4].value = "186";
		the_form.area.options[4].text = "國姓鄉";
		the_form.area.options[5].value = "187";
		the_form.area.options[5].text = "埔里鎮";
		the_form.area.options[6].value = "188";
		the_form.area.options[6].text = "仁愛鄉";
		the_form.area.options[7].value = "189";
		the_form.area.options[7].text = "名間鄉";
		the_form.area.options[8].value = "190";
		the_form.area.options[8].text = "集集鎮";
		the_form.area.options[9].value = "191";
		the_form.area.options[9].text = "水里鄉";
		the_form.area.options[10].value = "192";
		the_form.area.options[10].text = "魚池鄉";
		the_form.area.options[11].value = "193";
		the_form.area.options[11].text = "信義鄉";
		the_form.area.options[12].value = "194";
		the_form.area.options[12].text = "竹山鎮";
		the_form.area.options[13].value = "195";
		the_form.area.options[13].text = "鹿谷鄉";
		for(i = 0; i < the_form.area.length; i++)
		{
			if(my_area==parseInt(the_form.area.options[i].value, 10))
			{
				the_form.area.options[i].selected=true;
				break;
			}
		}
		return;
	}
	if(the_form.country.value == "1022")//嘉義市
	{
		the_form.area.length = 3;
		the_form.area.options[0].value = "000";
		the_form.area.options[0].text = "不設限";
		the_form.area.options[1].value = "394";
		the_form.area.options[1].text = "東區";
		the_form.area.options[2].value = "395";
		the_form.area.options[2].text = "西區";
		for(i = 0; i < the_form.area.length; i++)
		{
			if(my_area==parseInt(the_form.area.options[i].value, 10))
			{
				the_form.area.options[i].selected=true;
				break;
			}
		}
		return;
	}
	if(the_form.country.value == "1010")//嘉義縣
	{
		the_form.area.length = 19;
		the_form.area.options[0].value = "000";
		the_form.area.options[0].text = "不設限";
		the_form.area.options[1].value = "197";
		the_form.area.options[1].text = "番路鄉";
		the_form.area.options[2].value = "198";
		the_form.area.options[2].text = "梅山鄉";
		the_form.area.options[3].value = "199";
		the_form.area.options[3].text = "竹崎鄉";
		the_form.area.options[4].value = "200";
		the_form.area.options[4].text = "阿里山";
		the_form.area.options[5].value = "201";
		the_form.area.options[5].text = "中埔鄉";
		the_form.area.options[6].value = "202";
		the_form.area.options[6].text = "大埔鄉";
		the_form.area.options[7].value = "203";
		the_form.area.options[7].text = "水上鄉";
		the_form.area.options[8].value = "204";
		the_form.area.options[8].text = "鹿草鄉";
		the_form.area.options[9].value = "205";
		the_form.area.options[9].text = "太保市";
		the_form.area.options[10].value = "206";
		the_form.area.options[10].text = "朴子市";
		the_form.area.options[11].value = "207";
		the_form.area.options[11].text = "東石鄉";
		the_form.area.options[12].value = "208";
		the_form.area.options[12].text = "六腳鄉";
		the_form.area.options[13].value = "209";
		the_form.area.options[13].text = "新港鄉";
		the_form.area.options[14].value = "210";
		the_form.area.options[14].text = "民雄鄉";
		the_form.area.options[15].value = "211";
		the_form.area.options[15].text = "大林鎮";
		the_form.area.options[16].value = "212";
		the_form.area.options[16].text = "溪口鄉";
		the_form.area.options[17].value = "213";
		the_form.area.options[17].text = "義竹鄉";
		the_form.area.options[18].value = "214";
		the_form.area.options[18].text = "布袋鎮";
		for(i = 0; i < the_form.area.length; i++)
		{
			if(my_area==parseInt(the_form.area.options[i].value, 10))
			{
				the_form.area.options[i].selected=true;
				break;
			}
		}
		return;
	}
	if(the_form.country.value == "1013")//雲林縣
	{
		the_form.area.length = 21;
		the_form.area.options[0].value = "000";
		the_form.area.options[0].text = "不設限";
		the_form.area.options[1].value = "215";
		the_form.area.options[1].text = "斗南鎮";
		the_form.area.options[2].value = "216";
		the_form.area.options[2].text = "大埤鄉";
		the_form.area.options[3].value = "217";
		the_form.area.options[3].text = "虎尾鎮";
		the_form.area.options[4].value = "218";
		the_form.area.options[4].text = "土庫鎮";
		the_form.area.options[5].value = "219";
		the_form.area.options[5].text = "褒忠鄉";
		the_form.area.options[6].value = "220";
		the_form.area.options[6].text = "東勢鄉";
		the_form.area.options[7].value = "221";
		the_form.area.options[7].text = "台西鄉";
		the_form.area.options[8].value = "222";
		the_form.area.options[8].text = "崙背鄉";
		the_form.area.options[9].value = "223";
		the_form.area.options[9].text = "麥寮鄉";
		the_form.area.options[10].value = "224";
		the_form.area.options[10].text = "斗六市";
		the_form.area.options[11].value = "225";
		the_form.area.options[11].text = "林內鄉";
		the_form.area.options[12].value = "226";
		the_form.area.options[12].text = "古坑鄉";
		the_form.area.options[13].value = "227";
		the_form.area.options[13].text = "莿桐鄉";
		the_form.area.options[14].value = "228";
		the_form.area.options[14].text = "西螺鎮";
		the_form.area.options[15].value = "229";
		the_form.area.options[15].text = "二崙鄉";
		the_form.area.options[16].value = "230";
		the_form.area.options[16].text = "北港鎮";
		the_form.area.options[17].value = "231";
		the_form.area.options[17].text = "水林鄉";
		the_form.area.options[18].value = "232";
		the_form.area.options[18].text = "口湖鄉";
		the_form.area.options[19].value = "233";
		the_form.area.options[19].text = "四湖鄉";
		the_form.area.options[20].value = "234";
		the_form.area.options[20].text = "元長鄉";
		for(i = 0; i < the_form.area.length; i++)
		{
			if(my_area==parseInt(the_form.area.options[i].value, 10))
			{
				the_form.area.options[i].selected=true;
				break;
			}
		}
		return;
	}
	if(the_form.country.value == "1021")//台南市
	{
		the_form.area.length = 7;
		the_form.area.options[0].value = "000";
		the_form.area.options[0].text = "不設限";
		the_form.area.options[1].value = "235";
		the_form.area.options[1].text = "中西區";
		the_form.area.options[2].value = "236";
		the_form.area.options[2].text = "東區";
		the_form.area.options[3].value = "237";
		the_form.area.options[3].text = "南區";
		the_form.area.options[4].value = "238";
		the_form.area.options[4].text = "北區";
		the_form.area.options[5].value = "239";
		the_form.area.options[5].text = "安平區";
		the_form.area.options[6].value = "240";
		the_form.area.options[6].text = "安南區";
		for(i = 0; i < the_form.area.length; i++)
		{
			if(my_area==parseInt(the_form.area.options[i].value, 10))
			{
				the_form.area.options[i].selected=true;
				break;
			}
		}
		return;
	}
	if(the_form.country.value == "1001")//台南縣
	{
		the_form.area.length = 32;
		the_form.area.options[0].value = "000";
		the_form.area.options[0].text = "不設限";
		the_form.area.options[1].value = "241";
		the_form.area.options[1].text = "永康市";
		the_form.area.options[2].value = "242";
		the_form.area.options[2].text = "歸仁鄉";
		the_form.area.options[3].value = "243";
		the_form.area.options[3].text = "新化鎮";
		the_form.area.options[4].value = "244";
		the_form.area.options[4].text = "左鎮鄉";
		the_form.area.options[5].value = "245";
		the_form.area.options[5].text = "玉井鄉";
		the_form.area.options[6].value = "246";
		the_form.area.options[6].text = "楠西鄉";
		the_form.area.options[7].value = "247";
		the_form.area.options[7].text = "南化鄉";
		the_form.area.options[8].value = "248";
		the_form.area.options[8].text = "仁德鄉";
		the_form.area.options[9].value = "249";
		the_form.area.options[9].text = "關廟鄉";
		the_form.area.options[10].value = "250";
		the_form.area.options[10].text = "龍崎鄉";
		the_form.area.options[11].value = "251";
		the_form.area.options[11].text = "官田鄉";
		the_form.area.options[12].value = "252";
		the_form.area.options[12].text = "麻豆鎮";
		the_form.area.options[13].value = "253";
		the_form.area.options[13].text = "佳里鎮";
		the_form.area.options[14].value = "254";
		the_form.area.options[14].text = "西港鄉";
		the_form.area.options[15].value = "255";
		the_form.area.options[15].text = "七股鄉";
		the_form.area.options[16].value = "256";
		the_form.area.options[16].text = "將軍鄉";
		the_form.area.options[17].value = "257";
		the_form.area.options[17].text = "學甲鎮";
		the_form.area.options[18].value = "258";
		the_form.area.options[18].text = "北門鄉";
		the_form.area.options[19].value = "259";
		the_form.area.options[19].text = "新營市";
		the_form.area.options[20].value = "260";
		the_form.area.options[20].text = "後壁鄉";
		the_form.area.options[21].value = "261";
		the_form.area.options[21].text = "白河鎮";
		the_form.area.options[22].value = "262";
		the_form.area.options[22].text = "東山鄉";
		the_form.area.options[23].value = "263";
		the_form.area.options[23].text = "六甲鄉";
		the_form.area.options[24].value = "264";
		the_form.area.options[24].text = "下營鄉";
		the_form.area.options[25].value = "265";
		the_form.area.options[25].text = "柳營鄉";
		the_form.area.options[26].value = "266";
		the_form.area.options[26].text = "鹽水鎮";
		the_form.area.options[27].value = "267";
		the_form.area.options[27].text = "善化鎮";
		the_form.area.options[28].value = "268";
		the_form.area.options[28].text = "大內鄉";
		the_form.area.options[29].value = "269";
		the_form.area.options[29].text = "山上鄉";
		the_form.area.options[30].value = "270";
		the_form.area.options[30].text = "新市鄉";
		the_form.area.options[31].value = "271";
		the_form.area.options[31].text = "安定鄉";
		for(i = 0; i < the_form.area.length; i++)
		{
			if(my_area==parseInt(the_form.area.options[i].value, 10))
			{
				the_form.area.options[i].selected=true;
				break;
			}
		}
		return;
	}
	if(the_form.country.value == "1002")//高雄市
	{
		the_form.area.length = 12;
		the_form.area.options[0].value = "000";
		the_form.area.options[0].text = "不設限";
		the_form.area.options[1].value = "272";
		the_form.area.options[1].text = "新興區";
		the_form.area.options[2].value = "273";
		the_form.area.options[2].text = "前金區";
		the_form.area.options[3].value = "274";
		the_form.area.options[3].text = "苓雅區";
		the_form.area.options[4].value = "275";
		the_form.area.options[4].text = "鹽埕區";
		the_form.area.options[5].value = "276";
		the_form.area.options[5].text = "鼓山區";
		the_form.area.options[6].value = "277";
		the_form.area.options[6].text = "旗津區";
		the_form.area.options[7].value = "278";
		the_form.area.options[7].text = "前鎮區";
		the_form.area.options[8].value = "279";
		the_form.area.options[8].text = "三民區";
		the_form.area.options[9].value = "280";
		the_form.area.options[9].text = "楠梓區";
		the_form.area.options[10].value = "281";
		the_form.area.options[10].text = "小港區";
		the_form.area.options[11].value = "282";
		the_form.area.options[11].text = "左營區";
		for(i = 0; i < the_form.area.length; i++)
		{
			if(my_area==parseInt(the_form.area.options[i].value, 10))
			{
				the_form.area.options[i].selected=true;
				break;
			}
		}
		return;
	}
	if(the_form.country.value == "1014")//高雄縣
	{
		the_form.area.length = 28;
		the_form.area.options[0].value = "000";
		the_form.area.options[0].text = "不設限";
		the_form.area.options[1].value = "283";
		the_form.area.options[1].text = "仁武鄉";
		the_form.area.options[2].value = "284";
		the_form.area.options[2].text = "大社鄉";
		the_form.area.options[3].value = "285";
		the_form.area.options[3].text = "岡山鎮";
		the_form.area.options[4].value = "286";
		the_form.area.options[4].text = "路竹鄉";
		the_form.area.options[5].value = "287";
		the_form.area.options[5].text = "阿蓮鄉";
		the_form.area.options[6].value = "288";
		the_form.area.options[6].text = "田寮鄉";
		the_form.area.options[7].value = "289";
		the_form.area.options[7].text = "燕巢鄉";
		the_form.area.options[8].value = "290";
		the_form.area.options[8].text = "橋頭鄉";
		the_form.area.options[9].value = "291";
		the_form.area.options[9].text = "梓官鄉";
		the_form.area.options[10].value = "292";
		the_form.area.options[10].text = "彌陀鄉";
		the_form.area.options[11].value = "293";
		the_form.area.options[11].text = "永安鄉";
		the_form.area.options[12].value = "294";
		the_form.area.options[12].text = "湖內鄉";
		the_form.area.options[13].value = "295";
		the_form.area.options[13].text = "鳳山市";
		the_form.area.options[14].value = "296";
		the_form.area.options[14].text = "大寮鄉";
		the_form.area.options[15].value = "297";
		the_form.area.options[15].text = "林園鄉";
		the_form.area.options[16].value = "298";
		the_form.area.options[16].text = "鳥松鄉";
		the_form.area.options[17].value = "299";
		the_form.area.options[17].text = "大樹鄉";
		the_form.area.options[18].value = "300";
		the_form.area.options[18].text = "旗山鎮";
		the_form.area.options[19].value = "301";
		the_form.area.options[19].text = "美濃鎮";
		the_form.area.options[20].value = "302";
		the_form.area.options[20].text = "六龜鄉";
		the_form.area.options[21].value = "303";
		the_form.area.options[21].text = "內門鄉";
		the_form.area.options[22].value = "304";
		the_form.area.options[22].text = "杉林鄉";
		the_form.area.options[23].value = "305";
		the_form.area.options[23].text = "甲仙鄉";
		the_form.area.options[24].value = "306";
		the_form.area.options[24].text = "桃源鄉";
		the_form.area.options[25].value = "307";
		the_form.area.options[25].text = "那瑪夏";
		the_form.area.options[26].value = "308";
		the_form.area.options[26].text = "茂林鄉";
		the_form.area.options[27].value = "309";
		the_form.area.options[27].text = "茄萣鄉";
		for(i = 0; i < the_form.area.length; i++)
		{
			if(my_area==parseInt(the_form.area.options[i].value, 10))
			{
				the_form.area.options[i].selected=true;
				break;
			}
		}
		return;
	}
	if(the_form.country.value == "1019")//澎湖縣
	{
		the_form.area.length = 7;
		the_form.area.options[0].value = "000";
		the_form.area.options[0].text = "不設限";
		the_form.area.options[1].value = "310";
		the_form.area.options[1].text = "馬公市";
		the_form.area.options[2].value = "311";
		the_form.area.options[2].text = "西嶼鄉";
		the_form.area.options[3].value = "312";
		the_form.area.options[3].text = "望安鄉";
		the_form.area.options[4].value = "313";
		the_form.area.options[4].text = "七美鄉";
		the_form.area.options[5].value = "314";
		the_form.area.options[5].text = "白沙鄉";
		the_form.area.options[6].value = "315";
		the_form.area.options[6].text = "湖西鄉";
		for(i = 0; i < the_form.area.length; i++)
		{
			if(my_area==parseInt(the_form.area.options[i].value, 10))
			{
				the_form.area.options[i].selected=true;
				break;
			}
		}
		return;
	}
	if(the_form.country.value == "1016")//屏東縣
	{
		the_form.area.length = 34;
		the_form.area.options[0].value = "000";
		the_form.area.options[0].text = "不設限";
		the_form.area.options[1].value = "316";
		the_form.area.options[1].text = "屏東市";
		the_form.area.options[2].value = "317";
		the_form.area.options[2].text = "三地門";
		the_form.area.options[3].value = "318";
		the_form.area.options[3].text = "霧台鄉";
		the_form.area.options[4].value = "319";
		the_form.area.options[4].text = "瑪家鄉";
		the_form.area.options[5].value = "320";
		the_form.area.options[5].text = "九如鄉";
		the_form.area.options[6].value = "321";
		the_form.area.options[6].text = "里港鄉";
		the_form.area.options[7].value = "322";
		the_form.area.options[7].text = "高樹鄉";
		the_form.area.options[8].value = "323";
		the_form.area.options[8].text = "鹽埔鄉";
		the_form.area.options[9].value = "324";
		the_form.area.options[9].text = "長治鄉";
		the_form.area.options[10].value = "325";
		the_form.area.options[10].text = "麟洛鄉";
		the_form.area.options[11].value = "326";
		the_form.area.options[11].text = "竹田鄉";
		the_form.area.options[12].value = "327";
		the_form.area.options[12].text = "內埔鄉";
		the_form.area.options[13].value = "328";
		the_form.area.options[13].text = "萬丹鄉";
		the_form.area.options[14].value = "329";
		the_form.area.options[14].text = "潮州鎮";
		the_form.area.options[15].value = "330";
		the_form.area.options[15].text = "泰武鄉";
		the_form.area.options[16].value = "331";
		the_form.area.options[16].text = "來義鄉";
		the_form.area.options[17].value = "332";
		the_form.area.options[17].text = "萬巒鄉";
		the_form.area.options[18].value = "333";
		the_form.area.options[18].text = "崁頂鄉";
		the_form.area.options[19].value = "334";
		the_form.area.options[19].text = "新埤鄉";
		the_form.area.options[20].value = "335";
		the_form.area.options[20].text = "南州鄉";
		the_form.area.options[21].value = "336";
		the_form.area.options[21].text = "林邊鄉";
		the_form.area.options[22].value = "337";
		the_form.area.options[22].text = "東港鎮";
		the_form.area.options[23].value = "338";
		the_form.area.options[23].text = "琉球鄉";
		the_form.area.options[24].value = "339";
		the_form.area.options[24].text = "佳冬鄉";
		the_form.area.options[25].value = "340";
		the_form.area.options[25].text = "新園鄉";
		the_form.area.options[26].value = "341";
		the_form.area.options[26].text = "枋寮鄉";
		the_form.area.options[27].value = "342";
		the_form.area.options[27].text = "枋山鄉";
		the_form.area.options[28].value = "343";
		the_form.area.options[28].text = "春日鄉";
		the_form.area.options[29].value = "344";
		the_form.area.options[29].text = "獅子鄉";
		the_form.area.options[30].value = "345";
		the_form.area.options[30].text = "車城鄉";
		the_form.area.options[31].value = "346";
		the_form.area.options[31].text = "牡丹鄉";
		the_form.area.options[32].value = "347";
		the_form.area.options[32].text = "恆春鎮";
		the_form.area.options[33].value = "348";
		the_form.area.options[33].text = "滿州鄉";
		for(i = 0; i < the_form.area.length; i++)
		{
			if(my_area==parseInt(the_form.area.options[i].value, 10))
			{
				the_form.area.options[i].selected=true;
				break;
			}
		}
		return;
	}
	if(the_form.country.value == "1005")//台東縣
	{
		the_form.area.length = 17;
		the_form.area.options[0].value = "000";
		the_form.area.options[0].text = "不設限";
		the_form.area.options[1].value = "349";
		the_form.area.options[1].text = "台東市";
		the_form.area.options[2].value = "350";
		the_form.area.options[2].text = "綠島鄉";
		the_form.area.options[3].value = "351";
		the_form.area.options[3].text = "蘭嶼鄉";
		the_form.area.options[4].value = "352";
		the_form.area.options[4].text = "延平鄉";
		the_form.area.options[5].value = "353";
		the_form.area.options[5].text = "卑南鄉";
		the_form.area.options[6].value = "354";
		the_form.area.options[6].text = "鹿野鄉";
		the_form.area.options[7].value = "355";
		the_form.area.options[7].text = "關山鎮";
		the_form.area.options[8].value = "356";
		the_form.area.options[8].text = "海端鄉";
		the_form.area.options[9].value = "357";
		the_form.area.options[9].text = "池上鄉";
		the_form.area.options[10].value = "358";
		the_form.area.options[10].text = "東河鄉";
		the_form.area.options[11].value = "359";
		the_form.area.options[11].text = "成功鎮";
		the_form.area.options[12].value = "360";
		the_form.area.options[12].text = "長濱鄉";
		the_form.area.options[13].value = "361";
		the_form.area.options[13].text = "太麻里鄉";
		the_form.area.options[14].value = "362";
		the_form.area.options[14].text = "金峰鄉";
		the_form.area.options[15].value = "363";
		the_form.area.options[15].text = "大武鄉";
		the_form.area.options[16].value = "364";
		the_form.area.options[16].text = "達仁鄉";
		for(i = 0; i < the_form.area.length; i++)
		{
			if(my_area==parseInt(the_form.area.options[i].value, 10))
			{
				the_form.area.options[i].selected=true;
				break;
			}
		}
		return;
	}
	if(the_form.country.value == "1004")//花蓮縣
	{
		the_form.area.length = 14;
		the_form.area.options[0].value = "000";
		the_form.area.options[0].text = "不設限";
		the_form.area.options[1].value = "365";
		the_form.area.options[1].text = "花蓮市";
		the_form.area.options[2].value = "366";
		the_form.area.options[2].text = "新城鄉";
		the_form.area.options[3].value = "367";
		the_form.area.options[3].text = "秀林鄉";
		the_form.area.options[4].value = "368";
		the_form.area.options[4].text = "吉安鄉";
		the_form.area.options[5].value = "369";
		the_form.area.options[5].text = "壽豐鄉";
		the_form.area.options[6].value = "370";
		the_form.area.options[6].text = "鳳林鎮";
		the_form.area.options[7].value = "371";
		the_form.area.options[7].text = "光復鄉";
		the_form.area.options[8].value = "372";
		the_form.area.options[8].text = "豐濱鄉";
		the_form.area.options[9].value = "373";
		the_form.area.options[9].text = "瑞穗鄉";
		the_form.area.options[10].value = "374";
		the_form.area.options[10].text = "萬榮鄉";
		the_form.area.options[11].value = "375";
		the_form.area.options[11].text = "玉里鎮";
		the_form.area.options[12].value = "376";
		the_form.area.options[12].text = "卓溪鄉";
		the_form.area.options[13].value = "377";
		the_form.area.options[13].text = "富里鄉";
		for(i = 0; i < the_form.area.length; i++)
		{
			if(my_area==parseInt(the_form.area.options[i].value, 10))
			{
				the_form.area.options[i].selected=true;
				break;
			}
		}
		return;
	}
	if(the_form.country.value == "1017")//金門縣
	{
		the_form.area.length = 7;
		the_form.area.options[0].value = "000";
		the_form.area.options[0].text = "不設限";
		the_form.area.options[1].value = "378";
		the_form.area.options[1].text = "金沙鎮";
		the_form.area.options[2].value = "379";
		the_form.area.options[2].text = "金湖鎮";
		the_form.area.options[3].value = "380";
		the_form.area.options[3].text = "金寧鄉";
		the_form.area.options[4].value = "381";
		the_form.area.options[4].text = "金城鎮";
		the_form.area.options[5].value = "382";
		the_form.area.options[5].text = "烈嶼鄉";
		the_form.area.options[6].value = "383";
		the_form.area.options[6].text = "烏坵鄉";
		for(i = 0; i < the_form.area.length; i++)
		{
			if(my_area==parseInt(the_form.area.options[i].value, 10))
			{
				the_form.area.options[i].selected=true;
				break;
			}
		}
		return;
	}
	if(the_form.country.value == "1018")//連江縣
	{
		the_form.area.length = 8;
		the_form.area.options[0].value = "000";
		the_form.area.options[0].text = "不設限";
		the_form.area.options[1].value = "384";
		the_form.area.options[1].text = "南竿鄉";
		the_form.area.options[2].value = "385";
		the_form.area.options[2].text = "北竿鄉";
		the_form.area.options[3].value = "386";
		the_form.area.options[3].text = "莒光鄉";
		the_form.area.options[4].value = "387";
		the_form.area.options[4].text = "東引鄉";
		the_form.area.options[5].value = "388";
		the_form.area.options[5].text = "東沙";
		the_form.area.options[6].value = "389";
		the_form.area.options[6].text = "南沙";
		the_form.area.options[7].value = "390";
		the_form.area.options[7].text = "釣魚臺烈嶼";
		for(i = 0; i < the_form.area.length; i++)
		{
			if(my_area==parseInt(the_form.area.options[i].value, 10))
			{
				the_form.area.options[i].selected=true;
				break;
			}
		}
		return;
	}
	the_form.area.length = 1;
	the_form.area.options[0].value = "000";
	the_form.area.options[0].text = "不設限";
	the_form.area.options[0].selected=true;
	return;
}