一个相对不错的地区代码级联实现

类别:Java 点击:0 评论:0 推荐:

我不想多说什么,只想把这个提供给大家也给自己,客户端级连菜单如果数据量很大你必须考虑效率问题!!

//列表节点
function Entry(key,value){
   this.key=key;
   this.value=value;
}

//有序的映射
function SortedMap(){
   this.size=0;
   this.put = put;
   this.buffer =new Array();
   this.getIndex = getIndex;
   this.get=get;
}

function put(entry){

 var index = this.getIndex(entry.key);
 
 //移动数据
 for(var i=this.size;i>index;){
  this.buffer[i]=this.buffer[--i];
 }

 this.buffer[index]=entry;
 this.size++;
}
function getIndex(key){
 if(this.size==0) return 0;
 
 var min=0,max=this.size-1;
 var mid=0;
 while(min<=max){
  mid = (min+max) >> 1;
  if(key==this.buffer[mid].key){
   return mid;
  }
  else if(key<this.buffer[mid].key){
      max=mid-1;
  }
  else{
   min=mid+1;
  }
 }
 mid =(min+max) >>1;
 return mid+1;
}
function get(key){
 var min=0,max=this.size-1;
 
 while(min<=max){
  var mid=(min+max)>>1;
  if(key==this.buffer[mid].key){
   return this.buffer[mid].value;
  }
  else if(key<this.buffer[mid].key){
      max=mid-1;
  }
  else{
   min=mid+1;
  }
 }
 return null;
}

//一线代码是用程序连接数据库生成的
var map=new SortedMap();
var array_1=new Array();
array_1[0]=new ListBoxItem("110000","北京市","");
array_1[1]=new ListBoxItem("120000","天津市","");
array_1[2]=new ListBoxItem("130000","河北省","");
array_1[3]=new ListBoxItem("140000","山西省","");
array_1[4]=new ListBoxItem("150000","内蒙古自治区","");
array_1[5]=new ListBoxItem("210000","辽宁省","");
array_1[6]=new ListBoxItem("220000","吉林省","");
array_1[7]=new ListBoxItem("230000","黑龙江省","");
array_1[8]=new ListBoxItem("310000","上海市","");
array_1[9]=new ListBoxItem("320000","江苏省","");
array_1[10]=new ListBoxItem("330000","浙江省","");
array_1[11]=new ListBoxItem("340000","安徽省","");
array_1[12]=new ListBoxItem("350000","福建省","");
array_1[13]=new ListBoxItem("360000","江西省","");
array_1[14]=new ListBoxItem("370000","山东省","");
array_1[15]=new ListBoxItem("410000","河南省","");
array_1[16]=new ListBoxItem("420000","湖北省","");
array_1[17]=new ListBoxItem("430000","湖南省","");
array_1[18]=new ListBoxItem("440000","广东省","");
array_1[19]=new ListBoxItem("450000","广西壮族自治区","");
array_1[20]=new ListBoxItem("460000","海南省","");
array_1[21]=new ListBoxItem("500000","重庆市","");
array_1[22]=new ListBoxItem("510000","四川省","");
array_1[23]=new ListBoxItem("520000","贵州省","");
array_1[24]=new ListBoxItem("530000","云南省","");
array_1[25]=new ListBoxItem("540000","西藏自治区","");
array_1[26]=new ListBoxItem("610000","陕西省","");
array_1[27]=new ListBoxItem("620000","甘肃省","");
array_1[28]=new ListBoxItem("630000","青海省","");
array_1[29]=new ListBoxItem("640000","宁夏回族自治区","");
array_1[30]=new ListBoxItem("650000","新疆维吾尔自治区","");
array_1[31]=new ListBoxItem("710000","台湾省","");
array_1[32]=new ListBoxItem("810000","香港特别行政区","");
array_1[33]=new ListBoxItem("820000","澳门特别行政区","");
map.put(new Entry("000000",array_1));

var array_2_0=new Array();
array_2_0[0]=new ListBoxItem("110100","北京市市辖区","");
array_2_0[1]=new ListBoxItem("110200","北京市辖县","");
map.put(new Entry("110000",array_2_0));

var array_2_1=new Array();
array_2_1[0]=new ListBoxItem("120100","天津市市辖区","");
array_2_1[1]=new ListBoxItem("120200","天津市辖县","");
map.put(new Entry("120000",array_2_1));

var array_2_2=new Array();
array_2_2[0]=new ListBoxItem("130100","河北省石家庄市","");
array_2_2[1]=new ListBoxItem("130200","河北省唐山市","");
array_2_2[2]=new ListBoxItem("130300","河北省秦皇岛市","");
array_2_2[3]=new ListBoxItem("130400","河北省邯郸市","");
array_2_2[4]=new ListBoxItem("130500","河北省邢台市","");
array_2_2[5]=new ListBoxItem("130600","河北省保定市","");
array_2_2[6]=new ListBoxItem("130700","河北省张家口市","");
array_2_2[7]=new ListBoxItem("130800","河北省承德市","");
array_2_2[8]=new ListBoxItem("130900","河北省沧州市","");
array_2_2[9]=new ListBoxItem("131000","河北省廊坊市","");
array_2_2[10]=new ListBoxItem("131100","河北省衡水市","");
map.put(new Entry("130000",array_2_2));

var array_2_3=new Array();
array_2_3[0]=new ListBoxItem("140100","山西省太原市","");
array_2_3[1]=new ListBoxItem("140200","山西省大同市","");
array_2_3[2]=new ListBoxItem("140300","山西省阳泉市","");
array_2_3[3]=new ListBoxItem("140400","山西省长治市","");
array_2_3[4]=new ListBoxItem("140500","山西省晋城市","");
array_2_3[5]=new ListBoxItem("140600","山西省朔州市","");
array_2_3[6]=new ListBoxItem("140700","山西省晋中市","");
array_2_3[7]=new ListBoxItem("140800","山西省运城市","");
array_2_3[8]=new ListBoxItem("140900","山西省忻州市","");
array_2_3[9]=new ListBoxItem("141000","山西省临汾市","");
array_2_3[10]=new ListBoxItem("141100","山西省吕梁市","");
map.put(new Entry("140000",array_2_3));

var array_2_4=new Array();
array_2_4[0]=new ListBoxItem("150100","内蒙古自治区呼和浩特市","");
array_2_4[1]=new ListBoxItem("150200","内蒙古自治区包头市","");
array_2_4[2]=new ListBoxItem("150300","内蒙古自治区乌海市","");
array_2_4[3]=new ListBoxItem("150400","内蒙古自治区赤峰市","");
array_2_4[4]=new ListBoxItem("150500","内蒙古自治区通辽市","");
array_2_4[5]=new ListBoxItem("150600","内蒙古自治区鄂尔多斯市","");
array_2_4[6]=new ListBoxItem("150700","内蒙古自治区呼伦贝尔市","");
array_2_4[7]=new ListBoxItem("150800","内蒙古自治区巴彦淖尔市","");
array_2_4[8]=new ListBoxItem("150900","内蒙古自治区乌兰察布市","");
array_2_4[9]=new ListBoxItem("152200","内蒙古自治区兴安盟","");
array_2_4[10]=new ListBoxItem("152500","内蒙古自治区锡林郭勒盟","");
array_2_4[11]=new ListBoxItem("152600","内蒙古自治区乌兰察布盟","");
array_2_4[12]=new ListBoxItem("152900","内蒙古自治区阿拉善盟","");
map.put(new Entry("150000",array_2_4));

var array_2_5=new Array();
array_2_5[0]=new ListBoxItem("210100","辽宁省沈阳市","");
array_2_5[1]=new ListBoxItem("210200","辽宁省大连市","");
array_2_5[2]=new ListBoxItem("210300","辽宁省鞍山市","");
array_2_5[3]=new ListBoxItem("210400","辽宁省抚顺市","");
array_2_5[4]=new ListBoxItem("210500","辽宁省本溪市","");
array_2_5[5]=new ListBoxItem("210600","辽宁省丹东市","");
array_2_5[6]=new ListBoxItem("210700","辽宁省锦州市","");
array_2_5[7]=new ListBoxItem("210800","辽宁省营口市","");
array_2_5[8]=new ListBoxItem("210900","辽宁省阜新市","");
array_2_5[9]=new ListBoxItem("211000","辽宁省辽阳市","");
array_2_5[10]=new ListBoxItem("211100","辽宁省盘锦市","");
array_2_5[11]=new ListBoxItem("211200","辽宁省铁岭市","");
array_2_5[12]=new ListBoxItem("211300","辽宁省朝阳市","");
array_2_5[13]=new ListBoxItem("211400","辽宁省葫芦岛市","");
map.put(new Entry("210000",array_2_5));

var array_2_6=new Array();
array_2_6[0]=new ListBoxItem("220100","吉林省长春市","");
array_2_6[1]=new ListBoxItem("220200","吉林省吉林市","");
array_2_6[2]=new ListBoxItem("220300","吉林省四平市","");
array_2_6[3]=new ListBoxItem("220400","吉林省辽源市","");
array_2_6[4]=new ListBoxItem("220500","吉林省通化市","");
array_2_6[5]=new ListBoxItem("220600","吉林省白山市","");
array_2_6[6]=new ListBoxItem("220700","吉林省松原市","");
array_2_6[7]=new ListBoxItem("220800","吉林省白城市","");
array_2_6[8]=new ListBoxItem("222400","吉林省延边朝鲜族自治州","");
map.put(new Entry("220000",array_2_6));

var array_2_7=new Array();
array_2_7[0]=new ListBoxItem("230100","黑龙江省哈尔滨市","");
array_2_7[1]=new ListBoxItem("230200","黑龙江省齐齐哈尔市","");
array_2_7[2]=new ListBoxItem("230300","黑龙江省鸡西市","");
array_2_7[3]=new ListBoxItem("230400","黑龙江省鹤岗市","");
array_2_7[4]=new ListBoxItem("230500","黑龙江省双鸭山市","");
array_2_7[5]=new ListBoxItem("230600","黑龙江省大庆市","");
array_2_7[6]=new ListBoxItem("230700","黑龙江省伊春市","");
array_2_7[7]=new ListBoxItem("230800","黑龙江省佳木斯市","");
array_2_7[8]=new ListBoxItem("230900","黑龙江省七台河市","");
array_2_7[9]=new ListBoxItem("231000","黑龙江省牡丹江市","");
array_2_7[10]=new ListBoxItem("231100","黑龙江省黑河市","");
array_2_7[11]=new ListBoxItem("231200","黑龙江省绥化市","");
array_2_7[12]=new ListBoxItem("232700","黑龙江省大兴安岭地区","");
map.put(new Entry("230000",array_2_7));

var array_2_8=new Array();
array_2_8[0]=new ListBoxItem("310100","上海市市辖区","");
array_2_8[1]=new ListBoxItem("310200","上海市辖县","");
map.put(new Entry("310000",array_2_8));

var array_2_9=new Array();
array_2_9[0]=new ListBoxItem("320100","江苏省南京市","");
array_2_9[1]=new ListBoxItem("320200","江苏省无锡市","");
array_2_9[2]=new ListBoxItem("320300","江苏省徐州市","");
array_2_9[3]=new ListBoxItem("320400","江苏省常州市","");
array_2_9[4]=new ListBoxItem("320500","江苏省苏州市","");
array_2_9[5]=new ListBoxItem("320600","江苏省南通市","");
array_2_9[6]=new ListBoxItem("320700","江苏省连云港市","");
array_2_9[7]=new ListBoxItem("320800","江苏省淮安市","");
array_2_9[8]=new ListBoxItem("320900","江苏省盐城市","");
array_2_9[9]=new ListBoxItem("321000","江苏省扬州市","");
array_2_9[10]=new ListBoxItem("321100","江苏省镇江市","");
array_2_9[11]=new ListBoxItem("321200","江苏省泰州市","");
array_2_9[12]=new ListBoxItem("321300","江苏省宿迁市","");
map.put(new Entry("320000",array_2_9));

var array_2_10=new Array();
array_2_10[0]=new ListBoxItem("330100","浙江省杭州市","");
array_2_10[1]=new ListBoxItem("330200","浙江省宁波市","");
array_2_10[2]=new ListBoxItem("330300","浙江省温州市","");
array_2_10[3]=new ListBoxItem("330400","浙江省嘉兴市","");
array_2_10[4]=new ListBoxItem("330500","浙江省湖州市","");
array_2_10[5]=new ListBoxItem("330600","浙江省绍兴市","");
array_2_10[6]=new ListBoxItem("330700","浙江省金华市","");
array_2_10[7]=new ListBoxItem("330800","浙江省衢州市","");
array_2_10[8]=new ListBoxItem("330900","浙江省舟山市","");
array_2_10[9]=new ListBoxItem("331000","浙江省台州市","");
array_2_10[10]=new ListBoxItem("331100","浙江省丽水市","");
map.put(new Entry("330000",array_2_10));

var array_2_11=new Array();
array_2_11[0]=new ListBoxItem("340100","安徽省合肥市","");
array_2_11[1]=new ListBoxItem("340200","安徽省芜湖市","");
array_2_11[2]=new ListBoxItem("340300","安徽省蚌埠市","");
array_2_11[3]=new ListBoxItem("340400","安徽省淮南市","");
array_2_11[4]=new ListBoxItem("340500","安徽省马鞍山市","");
array_2_11[5]=new ListBoxItem("340600","安徽省淮北市","");
array_2_11[6]=new ListBoxItem("340700","安徽省铜陵市","");
array_2_11[7]=new ListBoxItem("340800","安徽省安庆市","");
array_2_11[8]=new ListBoxItem("341000","安徽省黄山市","");
array_2_11[9]=new ListBoxItem("341100","安徽省滁州市","");
array_2_11[10]=new ListBoxItem("341200","安徽省阜阳市","");
array_2_11[11]=new ListBoxItem("341300","安徽省宿州市","");
array_2_11[12]=new ListBoxItem("341400","安徽省巢湖市","");
array_2_11[13]=new ListBoxItem("341500","安徽省六安市","");
array_2_11[14]=new ListBoxItem("341600","安徽省亳州市","");
array_2_11[15]=new ListBoxItem("341700","安徽省池州市","");
array_2_11[16]=new ListBoxItem("341800","安徽省宣城市","");
map.put(new Entry("340000",array_2_11));

var array_2_12=new Array();
array_2_12[0]=new ListBoxItem("350100","福建省福州市","");
array_2_12[1]=new ListBoxItem("350200","福建省厦门市","");
array_2_12[2]=new ListBoxItem("350300","福建省莆田市","");
array_2_12[3]=new ListBoxItem("350400","福建省三明市","");
array_2_12[4]=new ListBoxItem("350500","福建省泉州市","");
array_2_12[5]=new ListBoxItem("350600","福建省漳州市","");
array_2_12[6]=new ListBoxItem("350700","福建省南平市","");
array_2_12[7]=new ListBoxItem("350800","福建省龙岩市","");
array_2_12[8]=new ListBoxItem("350900","福建省宁德市","");
map.put(new Entry("350000",array_2_12));

var array_2_13=new Array();
array_2_13[0]=new ListBoxItem("360100","江西省南昌市","");
array_2_13[1]=new ListBoxItem("360200","江西省景德镇市","");
array_2_13[2]=new ListBoxItem("360300","江西省萍乡市","");
array_2_13[3]=new ListBoxItem("360400","江西省九江市","");
array_2_13[4]=new ListBoxItem("360500","江西省新余市","");
array_2_13[5]=new ListBoxItem("360600","江西省鹰潭市","");
array_2_13[6]=new ListBoxItem("360700","江西省赣州市","");
array_2_13[7]=new ListBoxItem("360800","江西省吉安市","");
array_2_13[8]=new ListBoxItem("360900","江西省宜春市","");
array_2_13[9]=new ListBoxItem("361000","江西省抚州市","");
array_2_13[10]=new ListBoxItem("361100","江西省上饶市","");
map.put(new Entry("360000",array_2_13));

var array_2_14=new Array();
array_2_14[0]=new ListBoxItem("370100","山东省济南市","");
array_2_14[1]=new ListBoxItem("370200","山东省青岛市","");
array_2_14[2]=new ListBoxItem("370300","山东省淄博市","");
array_2_14[3]=new ListBoxItem("370400","山东省枣庄市","");
array_2_14[4]=new ListBoxItem("370500","山东省东营市","");
array_2_14[5]=new ListBoxItem("370600","山东省烟台市","");
array_2_14[6]=new ListBoxItem("370700","山东省潍坊市","");
array_2_14[7]=new ListBoxItem("370800","山东省济宁市","");
array_2_14[8]=new ListBoxItem("370900","山东省泰安市","");
array_2_14[9]=new ListBoxItem("371000","山东省威海市","");
array_2_14[10]=new ListBoxItem("371100","山东省日照市","");
array_2_14[11]=new ListBoxItem("371200","山东省莱芜市","");
array_2_14[12]=new ListBoxItem("371300","山东省临沂市","");
array_2_14[13]=new ListBoxItem("371400","山东省德州市","");
array_2_14[14]=new ListBoxItem("371500","山东省聊城市","");
array_2_14[15]=new ListBoxItem("371600","山东省滨州市","");
array_2_14[16]=new ListBoxItem("371700","山东省荷泽市","");
map.put(new Entry("370000",array_2_14));

var array_2_15=new Array();
array_2_15[0]=new ListBoxItem("410100","河南省郑州市","");
array_2_15[1]=new ListBoxItem("410200","河南省开封市","");
array_2_15[2]=new ListBoxItem("410300","河南省洛阳市","");
array_2_15[3]=new ListBoxItem("410400","河南省平顶山市","");
array_2_15[4]=new ListBoxItem("410500","河南省安阳市","");
array_2_15[5]=new ListBoxItem("410600","河南省鹤壁市","");
array_2_15[6]=new ListBoxItem("410700","河南省新乡市","");
array_2_15[7]=new ListBoxItem("410800","河南省焦作市","");
array_2_15[8]=new ListBoxItem("410900","河南省濮阳市","");
array_2_15[9]=new ListBoxItem("411000","河南省许昌市","");
array_2_15[10]=new ListBoxItem("411100","河南省漯河市","");
array_2_15[11]=new ListBoxItem("411200","河南省三门峡市","");
array_2_15[12]=new ListBoxItem("411300","河南省南阳市","");
array_2_15[13]=new ListBoxItem("411400","河南省商丘市","");
array_2_15[14]=new ListBoxItem("411500","河南省信阳市","");
array_2_15[15]=new ListBoxItem("411600","河南省周口市","");
array_2_15[16]=new ListBoxItem("411700","河南省驻马店市","");
map.put(new Entry("410000",array_2_15));

var array_2_16=new Array();
array_2_16[0]=new ListBoxItem("420100","湖北省武汉市","");
array_2_16[1]=new ListBoxItem("420200","湖北省黄石市","");
array_2_16[2]=new ListBoxItem("420300","湖北省十堰市","");
array_2_16[3]=new ListBoxItem("420500","湖北省宜昌市","");
array_2_16[4]=new ListBoxItem("420600","湖北省襄樊市","");
array_2_16[5]=new ListBoxItem("420700","湖北省鄂州市","");
array_2_16[6]=new ListBoxItem("420800","湖北省荆门市","");
array_2_16[7]=new ListBoxItem("420900","湖北省孝感市","");
array_2_16[8]=new ListBoxItem("421000","湖北省荆州市","");
array_2_16[9]=new ListBoxItem("421100","湖北省黄冈市","");
array_2_16[10]=new ListBoxItem("421200","湖北省咸宁市","");
array_2_16[11]=new ListBoxItem("421300","湖北省随州市","");
array_2_16[12]=new ListBoxItem("422800","湖北省恩施土家族苗族自治州","");
array_2_16[13]=new ListBoxItem("429000","湖北省省直辖行政单位","");
map.put(new Entry("420000",array_2_16));

var array_2_17=new Array();
array_2_17[0]=new ListBoxItem("430100","湖南省长沙市","");
array_2_17[1]=new ListBoxItem("430200","湖南省株洲市","");
array_2_17[2]=new ListBoxItem("430300","湖南省湘潭市","");
array_2_17[3]=new ListBoxItem("430400","湖南省衡阳市","");
array_2_17[4]=new ListBoxItem("430500","湖南省邵阳市","");
array_2_17[5]=new ListBoxItem("430600","湖南省岳阳市","");
array_2_17[6]=new ListBoxItem("430700","湖南省常德市","");
array_2_17[7]=new ListBoxItem("430800","湖南省张家界市","");
array_2_17[8]=new ListBoxItem("430900","湖南省益阳市","");
array_2_17[9]=new ListBoxItem("431000","湖南省郴州市","");
array_2_17[10]=new ListBoxItem("431100","湖南省永州市","");
array_2_17[11]=new ListBoxItem("431200","湖南省怀化市","");
array_2_17[12]=new ListBoxItem("431300","湖南省娄底市","");
array_2_17[13]=new ListBoxItem("433100","湖南省湘西土家族苗族自治州","");
map.put(new Entry("430000",array_2_17));

var array_2_18=new Array();
array_2_18[0]=new ListBoxItem("440100","广东省广州市","");
array_2_18[1]=new ListBoxItem("440200","广东省深圳市","");
array_2_18[2]=new ListBoxItem("440300","广东省珠海市","");
array_2_18[3]=new ListBoxItem("440400","广东省汕头市","");
array_2_18[4]=new ListBoxItem("440500","广东省佛山市","");
array_2_18[5]=new ListBoxItem("440600","广东省韶关市","");
array_2_18[6]=new ListBoxItem("440700","广东省河源市","");
array_2_18[7]=new ListBoxItem("440800","广东省梅州市","");
array_2_18[8]=new ListBoxItem("440900","广东省惠州市","");
array_2_18[9]=new ListBoxItem("441000","广东省汕尾市","");
array_2_18[10]=new ListBoxItem("441100","广东省东莞市","");
array_2_18[11]=new ListBoxItem("441200","广东省中山市","");
array_2_18[12]=new ListBoxItem("441300","广东省江门市","");
array_2_18[13]=new ListBoxItem("441400","广东省阳江市","");
array_2_18[14]=new ListBoxItem("441500","广东省湛江市","");
array_2_18[15]=new ListBoxItem("441600","广东省茂名市","");
array_2_18[16]=new ListBoxItem("441700","广东省肇庆市","");
array_2_18[17]=new ListBoxItem("441800","广东省清远市","");
array_2_18[18]=new ListBoxItem("441900","广东省潮州市","");
array_2_18[19]=new ListBoxItem("442000","广东省揭阳市","");
array_2_18[20]=new ListBoxItem("442200","广东省云浮市","");
map.put(new Entry("440000",array_2_18));

var array_2_19=new Array();
array_2_19[0]=new ListBoxItem("450100","广西壮族自治区南宁市","");
array_2_19[1]=new ListBoxItem("450200","广西壮族自治区柳州市","");
array_2_19[2]=new ListBoxItem("450300","广西壮族自治区桂林市","");
array_2_19[3]=new ListBoxItem("450400","广西壮族自治区梧州市","");
array_2_19[4]=new ListBoxItem("450500","广西壮族自治区北海市","");
array_2_19[5]=new ListBoxItem("450600","广西壮族自治区防城港市","");
array_2_19[6]=new ListBoxItem("450700","广西壮族自治区钦州市","");
array_2_19[7]=new ListBoxItem("450800","广西壮族自治区贵港市","");
array_2_19[8]=new ListBoxItem("450900","广西壮族自治区玉林市","");
array_2_19[9]=new ListBoxItem("451000","广西壮族自治区百色市","");
array_2_19[10]=new ListBoxItem("451100","广西壮族自治区贺州市","");
array_2_19[11]=new ListBoxItem("451200","广西壮族自治区河池市","");
array_2_19[12]=new ListBoxItem("451300","广西壮族自治区来宾市","");
array_2_19[13]=new ListBoxItem("451400","广西壮族自治区崇左市","");
map.put(new Entry("450000",array_2_19));

var array_2_20=new Array();
array_2_20[0]=new ListBoxItem("460100","海南省海口市","");
array_2_20[1]=new ListBoxItem("460200","海南省三亚市","");
array_2_20[2]=new ListBoxItem("469000","海南省省直辖县级行政单位","");
map.put(new Entry("460000",array_2_20));

var array_2_21=new Array();
array_2_21[0]=new ListBoxItem("500100","重庆市市辖区","");
array_2_21[1]=new ListBoxItem("500200","重庆市辖县","");
array_2_21[2]=new ListBoxItem("500300","重庆市市","");
map.put(new Entry("500000",array_2_21));

var array_2_22=new Array();
array_2_22[0]=new ListBoxItem("510100","四川省成都市","");
array_2_22[1]=new ListBoxItem("510300","四川省自贡市","");
array_2_22[2]=new ListBoxItem("510400","四川省攀枝花市","");
array_2_22[3]=new ListBoxItem("510500","四川省泸州市","");
array_2_22[4]=new ListBoxItem("510600","四川省德阳市","");
array_2_22[5]=new ListBoxItem("510700","四川省绵阳市","");
array_2_22[6]=new ListBoxItem("510800","四川省广元市","");
array_2_22[7]=new ListBoxItem("510900","四川省遂宁市","");
array_2_22[8]=new ListBoxItem("511000","四川省内江市","");
array_2_22[9]=new ListBoxItem("511100","四川省乐山市","");
array_2_22[10]=new ListBoxItem("511300","四川省南充市","");
array_2_22[11]=new ListBoxItem("511400","四川省眉山市","");
array_2_22[12]=new ListBoxItem("511500","四川省宜宾市","");
array_2_22[13]=new ListBoxItem("511600","四川省广安市","");
array_2_22[14]=new ListBoxItem("511700","四川省达州市","");
array_2_22[15]=new ListBoxItem("511800","四川省雅安市","");
array_2_22[16]=new ListBoxItem("511900","四川省巴中市","");
array_2_22[17]=new ListBoxItem("512000","四川省资阳市","");
array_2_22[18]=new ListBoxItem("513200","四川省阿坝藏族羌族自治州","");
array_2_22[19]=new ListBoxItem("513300","四川省甘孜藏族自治州","");
array_2_22[20]=new ListBoxItem("513400","四川省凉山彝族自治州","");
map.put(new Entry("510000",array_2_22));

var array_2_23=new Array();
array_2_23[0]=new ListBoxItem("520100","贵州省贵阳市","");
array_2_23[1]=new ListBoxItem("520200","贵州省六盘水市","");
array_2_23[2]=new ListBoxItem("520300","贵州省遵义市","");
array_2_23[3]=new ListBoxItem("520400","贵州省安顺市","");
array_2_23[4]=new ListBoxItem("522200","贵州省铜仁地区","");
array_2_23[5]=new ListBoxItem("522300","贵州省黔西南布依族苗族自治州","");
array_2_23[6]=new ListBoxItem("522400","贵州省毕节地区","");
array_2_23[7]=new ListBoxItem("522600","贵州省黔东南苗族侗族自治州","");
array_2_23[8]=new ListBoxItem("522700","贵州省黔南布依族苗族自治州","");
map.put(new Entry("520000",array_2_23));

var array_2_24=new Array();
array_2_24[0]=new ListBoxItem("530100","云南省昆明市","");
array_2_24[1]=new ListBoxItem("530300","云南省曲靖市","");
array_2_24[2]=new ListBoxItem("530400","云南省玉溪市","");
array_2_24[3]=new ListBoxItem("530500","云南省保山市","");
array_2_24[4]=new ListBoxItem("530600","云南省昭通市","");
array_2_24[5]=new ListBoxItem("530700","云南省丽江市","");
array_2_24[6]=new ListBoxItem("530800","云南省思茅市","");
array_2_24[7]=new ListBoxItem("530900","云南省临沧市","");
array_2_24[8]=new ListBoxItem("532300","云南省楚雄彝族自治州","");
array_2_24[9]=new ListBoxItem("532500","云南省红河哈尼族彝族自治州","");
array_2_24[10]=new ListBoxItem("532600","云南省文山壮族苗族自治州","");
array_2_24[11]=new ListBoxItem("532800","云南省西双版纳傣族自治州","");
array_2_24[12]=new ListBoxItem("532900","云南省大理白族自治州","");
array_2_24[13]=new ListBoxItem("533100","云南省德宏傣族景颇族自治州","");
array_2_24[14]=new ListBoxItem("533300","云南省怒江傈僳族自治州","");
array_2_24[15]=new ListBoxItem("533400","云南省迪庆藏族自治州","");
map.put(new Entry("530000",array_2_24));

var array_2_25=new Array();
array_2_25[0]=new ListBoxItem("540100","西藏自治区拉萨市","");
array_2_25[1]=new ListBoxItem("542100","西藏自治区昌都地区","");
array_2_25[2]=new ListBoxItem("542200","西藏自治区山南地区","");
array_2_25[3]=new ListBoxItem("542300","西藏自治区日喀则地区","");
array_2_25[4]=new ListBoxItem("542400","西藏自治区那曲地区","");
array_2_25[5]=new ListBoxItem("542500","西藏自治区阿里地区","");
array_2_25[6]=new ListBoxItem("542600","西藏自治区林芝地区","");
map.put(new Entry("540000",array_2_25));

var array_2_26=new Array();
array_2_26[0]=new ListBoxItem("610100","陕西省西安市","");
array_2_26[1]=new ListBoxItem("610200","陕西省铜川市","");
array_2_26[2]=new ListBoxItem("610300","陕西省宝鸡市","");
array_2_26[3]=new ListBoxItem("610400","陕西省咸阳市","");
array_2_26[4]=new ListBoxItem("610500","陕西省渭南市","");
array_2_26[5]=new ListBoxItem("610600","陕西省延安市","");
array_2_26[6]=new ListBoxItem("610700","陕西省汉中市","");
array_2_26[7]=new ListBoxItem("610800","陕西省榆林市","");
array_2_26[8]=new ListBoxItem("610900","陕西省安康市","");
array_2_26[9]=new ListBoxItem("611000","陕西省商洛市","");
map.put(new Entry("610000",array_2_26));

var array_2_27=new Array();
array_2_27[0]=new ListBoxItem("620100","甘肃省兰州市","");
array_2_27[1]=new ListBoxItem("620200","甘肃省嘉峪关市","");
array_2_27[2]=new ListBoxItem("620300","甘肃省金昌市","");
array_2_27[3]=new ListBoxItem("620400","甘肃省白银市","");
array_2_27[4]=new ListBoxItem("620500","甘肃省天水市","");
array_2_27[5]=new ListBoxItem("620600","甘肃省武威市","");
array_2_27[6]=new ListBoxItem("620700","甘肃省张掖市","");
array_2_27[7]=new ListBoxItem("620800","甘肃省平凉市","");
array_2_27[8]=new ListBoxItem("620900","甘肃省酒泉市","");
array_2_27[9]=new ListBoxItem("621000","甘肃省庆阳市","");
array_2_27[10]=new ListBoxItem("621100","甘肃省定西市","");
array_2_27[11]=new ListBoxItem("622600","甘肃省陇南地区","");
array_2_27[12]=new ListBoxItem("622900","甘肃省临夏回族自治州","");
array_2_27[13]=new ListBoxItem("623000","甘肃省甘南藏族自治州","");
map.put(new Entry("620000",array_2_27));

var array_2_28=new Array();
array_2_28[0]=new ListBoxItem("630100","青海省西宁市","");
array_2_28[1]=new ListBoxItem("632100","青海省海东地区","");
array_2_28[2]=new ListBoxItem("632200","青海省海北藏族自治州","");
array_2_28[3]=new ListBoxItem("632300","青海省黄南藏族自治州","");
array_2_28[4]=new ListBoxItem("632500","青海省海南藏族自治州","");
array_2_28[5]=new ListBoxItem("632600","青海省果洛藏族自治州","");
array_2_28[6]=new ListBoxItem("632700","青海省玉树藏族自治州","");
array_2_28[7]=new ListBoxItem("632800","青海省海西蒙古族藏族自治州","");
map.put(new Entry("630000",array_2_28));

var array_2_29=new Array();
array_2_29[0]=new ListBoxItem("640100","宁夏回族自治区银川市","");
array_2_29[1]=new ListBoxItem("640200","宁夏回族自治区石嘴山市","");
array_2_29[2]=new ListBoxItem("640300","宁夏回族自治区吴忠市","");
array_2_29[3]=new ListBoxItem("640400","宁夏回族自治区固原市","");
array_2_29[4]=new ListBoxItem("640500","宁夏回族自治区中卫市","");
map.put(new Entry("640000",array_2_29));

var array_2_30=new Array();
array_2_30[0]=new ListBoxItem("650100","新疆维吾尔自治区乌鲁木齐市","");
array_2_30[1]=new ListBoxItem("650200","新疆维吾尔自治区克拉玛依市","");
array_2_30[2]=new ListBoxItem("652100","新疆维吾尔自治区吐鲁番地区","");
array_2_30[3]=new ListBoxItem("652200","新疆维吾尔自治区哈密地区","");
array_2_30[4]=new ListBoxItem("652300","新疆维吾尔自治区昌吉回族自治州","");
array_2_30[5]=new ListBoxItem("652700","新疆维吾尔自治区博尔塔拉蒙古自治州","");
array_2_30[6]=new ListBoxItem("652800","新疆维吾尔自治区巴音郭楞蒙古自治州","");
array_2_30[7]=new ListBoxItem("652900","新疆维吾尔自治区阿克苏地区","");
array_2_30[8]=new ListBoxItem("653000","新疆维吾尔自治区克孜勒苏柯尔克孜自治州","");
array_2_30[9]=new ListBoxItem("653100","新疆维吾尔自治区喀什地区","");
array_2_30[10]=new ListBoxItem("653200","新疆维吾尔自治区和田地区","");
array_2_30[11]=new ListBoxItem("654000","新疆维吾尔自治区伊犁哈萨克自治州","");
array_2_30[12]=new ListBoxItem("654200","新疆维吾尔自治区塔城地区","");
array_2_30[13]=new ListBoxItem("654300","新疆维吾尔自治区阿勒泰地区","");
array_2_30[14]=new ListBoxItem("659000","新疆维吾尔自治区省直辖行政单位","");
map.put(new Entry("650000",array_2_30));

var array_2_31=new Array();
map.put(new Entry("710000",array_2_31));

var array_2_32=new Array();
map.put(new Entry("810000",array_2_32));

var array_2_33=new Array();
map.put(new Entry("820000",array_2_33));

var array_3_0=new Array();
array_3_0[0]=new ListBoxItem("110101","北京市东城区","");
array_3_0[1]=new ListBoxItem("110102","北京市西城区","");
array_3_0[2]=new ListBoxItem("110103","北京市崇文区","");
array_3_0[3]=new ListBoxItem("110104","北京市宣武区","");
array_3_0[4]=new ListBoxItem("110105","北京市朝阳区","");
array_3_0[5]=new ListBoxItem("110106","北京市丰台区","");
array_3_0[6]=new ListBoxItem("110107","北京市石景山区","");
array_3_0[7]=new ListBoxItem("110108","北京市海淀区","");
array_3_0[8]=new ListBoxItem("110109","北京市门头沟区","");
array_3_0[9]=new ListBoxItem("110111","北京市房山区","");
array_3_0[10]=new ListBoxItem("110112","北京市通州区","");
array_3_0[11]=new ListBoxItem("110113","北京市顺义区","");
array_3_0[12]=new ListBoxItem("110114","北京市昌平区","");
array_3_0[13]=new ListBoxItem("110115","北京市大兴区","");
array_3_0[14]=new ListBoxItem("110116","北京市怀柔区","");
array_3_0[15]=new ListBoxItem("110117","北京市平谷区","");
map.put(new Entry("110100",array_3_0));

var array_3_1=new Array();
array_3_1[0]=new ListBoxItem("110228","北京市密云县","");
array_3_1[1]=new ListBoxItem("110229","北京市延庆县","");
map.put(new Entry("110200",array_3_1));

var array_3_2=new Array();
array_3_2[0]=new ListBoxItem("120101","天津市和平区","");
array_3_2[1]=new ListBoxItem("120102","天津市河东区","");
array_3_2[2]=new ListBoxItem("120103","天津市河西区","");
array_3_2[3]=new ListBoxItem("120104","天津市南开区","");
array_3_2[4]=new ListBoxItem("120105","天津市河北区","");
array_3_2[5]=new ListBoxItem("120106","天津市红桥区","");
array_3_2[6]=new ListBoxItem("120107","天津市塘沽区","");
array_3_2[7]=new ListBoxItem("120108","天津市汉沽区","");
array_3_2[8]=new ListBoxItem("120109","天津市大港区","");
array_3_2[9]=new ListBoxItem("120110","天津市东丽区","");
array_3_2[10]=new ListBoxItem("120111","天津市西青区","");
array_3_2[11]=new ListBoxItem("120112","天津市津南区","");
array_3_2[12]=new ListBoxItem("120113","天津市北辰区","");
array_3_2[13]=new ListBoxItem("120114","天津市武清区","");
array_3_2[14]=new ListBoxItem("120115","天津市宝坻区","");
map.put(new Entry("120100",array_3_2));

var array_3_3=new Array();
array_3_3[0]=new ListBoxItem("120221","天津市宁河县","");
array_3_3[1]=new ListBoxItem("120223","天津市静海县","");
array_3_3[2]=new ListBoxItem("120225","天津市蓟县","");
map.put(new Entry("120200",array_3_3));

var array_3_4=new Array();
array_3_4[0]=new ListBoxItem("130101","河北省石家庄市市辖区","");
array_3_4[1]=new ListBoxItem("130102","河北省石家庄市长安区","");
array_3_4[2]=new ListBoxItem("130103","河北省石家庄市桥东区","");
array_3_4[3]=new ListBoxItem("130104","河北省石家庄市桥西区","");
array_3_4[4]=new ListBoxItem("130105","河北省石家庄市新华区","");
array_3_4[5]=new ListBoxItem("130107","河北省石家庄市井陉矿区","");
array_3_4[6]=new ListBoxItem("130108","河北省石家庄市裕华区","");
array_3_4[7]=new ListBoxItem("130121","河北省井陉县","");
array_3_4[8]=new ListBoxItem("130123","河北省正定县","");
array_3_4[9]=new ListBoxItem("130124","河北省栾城县","");
array_3_4[10]=new ListBoxItem("130125","河北省行唐县","");
array_3_4[11]=new ListBoxItem("130126","河北省灵寿县","");
array_3_4[12]=new ListBoxItem("130127","河北省高邑县","");
array_3_4[13]=new ListBoxItem("130128","河北省深泽县","");
array_3_4[14]=new ListBoxItem("130129","河北省赞皇县","");
array_3_4[15]=new ListBoxItem("130130","河北省无极县","");
array_3_4[16]=new ListBoxItem("130131","河北省平山县","");
array_3_4[17]=new ListBoxItem("130132","河北省元氏县","");
array_3_4[18]=new ListBoxItem("130133","河北省赵县","");
array_3_4[19]=new ListBoxItem("130181","河北省辛集市","");
array_3_4[20]=new ListBoxItem("130182","河北省藁城市","");
array_3_4[21]=new ListBoxItem("130183","河北省晋州市","");
array_3_4[22]=new ListBoxItem("130184","河北省新乐市","");
array_3_4[23]=new ListBoxItem("130185","河北省鹿泉市","");
map.put(new Entry("130100",array_3_4));

var array_3_5=new Array();
array_3_5[0]=new ListBoxItem("130201","河北省唐山市市辖区","");
array_3_5[1]=new ListBoxItem("130202","河北省唐山市路南区","");
array_3_5[2]=new ListBoxItem("130203","河北省唐山市路北区","");
array_3_5[3]=new ListBoxItem("130204","河北省唐山市古冶区","");
array_3_5[4]=new ListBoxItem("130205","河北省唐山市开平区","");
array_3_5[5]=new ListBoxItem("130207","河北省唐山市丰南区","");
array_3_5[6]=new ListBoxItem("130208","河北省唐山市丰润区","");
array_3_5[7]=new ListBoxItem("130223","河北省滦县","");
array_3_5[8]=new ListBoxItem("130224","河北省滦南县","");
array_3_5[9]=new ListBoxItem("130225","河北省乐亭县","");
array_3_5[10]=new ListBoxItem("130227","河北省迁西县","");
array_3_5[11]=new ListBoxItem("130229","河北省玉田县","");
array_3_5[12]=new ListBoxItem("130230","河北省唐海县","");
array_3_5[13]=new ListBoxItem("130281","河北省遵化市","");
array_3_5[14]=new ListBoxItem("130283","河北省迁安市","");
map.put(new Entry("130200",array_3_5));

var array_3_6=new Array();
array_3_6[0]=new ListBoxItem("130301","河北省秦皇岛市市辖区","");
array_3_6[1]=new ListBoxItem("130302","河北省秦皇岛市海港区","");
array_3_6[2]=new ListBoxItem("130303","河北省秦皇岛市山海关区","");
array_3_6[3]=new ListBoxItem("130304","河北省秦皇岛市北戴河区","");
array_3_6[4]=new ListBoxItem("130321","河北省青龙满族自治县","");
array_3_6[5]=new ListBoxItem("130322","河北省昌黎县","");
array_3_6[6]=new ListBoxItem("130323","河北省抚宁县","");
array_3_6[7]=new ListBoxItem("130324","河北省卢龙县","");
map.put(new Entry("130300",array_3_6));

var array_3_7=new Array();
array_3_7[0]=new ListBoxItem("130401","河北省邯郸市市辖区","");
array_3_7[1]=new ListBoxItem("130402","河北省邯郸市邯山区","");
array_3_7[2]=new ListBoxItem("130403","河北省邯郸市丛台区","");
array_3_7[3]=new ListBoxItem("130404","河北省邯郸市复兴区","");
array_3_7[4]=new ListBoxItem("130406","河北省邯郸市峰峰矿区","");
array_3_7[5]=new ListBoxItem("130421","河北省邯郸县","");
array_3_7[6]=new ListBoxItem("130423","河北省临漳县","");
array_3_7[7]=new ListBoxItem("130424","河北省成安县","");
array_3_7[8]=new ListBoxItem("130425","河北省大名县","");
array_3_7[9]=new ListBoxItem("130426","河北省涉县","");
array_3_7[10]=new ListBoxItem("130427","河北省磁县","");
array_3_7[11]=new ListBoxItem("130428","河北省肥乡县","");
array_3_7[12]=new ListBoxItem("130429","河北省永年县","");
array_3_7[13]=new ListBoxItem("130430","河北省邱县","");
array_3_7[14]=new ListBoxItem("130431","河北省鸡泽县","");
array_3_7[15]=new ListBoxItem("130432","河北省广平县","");
array_3_7[16]=new ListBoxItem("130433","河北省馆陶县","");
array_3_7[17]=new ListBoxItem("130434","河北省魏县","");
array_3_7[18]=new ListBoxItem("130435","河北省曲周县","");
array_3_7[19]=new ListBoxItem("130481","河北省武安市","");
map.put(new Entry("130400",array_3_7));

var array_3_8=new Array();
array_3_8[0]=new ListBoxItem("130501","河北省邢台市市辖区","");
array_3_8[1]=new ListBoxItem("130502","河北省邢台市桥东区","");
array_3_8[2]=new ListBoxItem("130503","河北省邢台市桥西区","");
array_3_8[3]=new ListBoxItem("130521","河北省邢台县","");
array_3_8[4]=new ListBoxItem("130522","河北省临城县","");
array_3_8[5]=new ListBoxItem("130523","河北省内丘县","");
array_3_8[6]=new ListBoxItem("130524","河北省柏乡县","");
array_3_8[7]=new ListBoxItem("130525","河北省隆尧县","");
array_3_8[8]=new ListBoxItem("130526","河北省任县","");
array_3_8[9]=new ListBoxItem("130527","河北省南和县","");
array_3_8[10]=new ListBoxItem("130528","河北省宁晋县","");
array_3_8[11]=new ListBoxItem("130529","河北省巨鹿县","");
array_3_8[12]=new ListBoxItem("130530","河北省新河县","");
array_3_8[13]=new ListBoxItem("130531","河北省广宗县","");
array_3_8[14]=new ListBoxItem("130532","河北省平乡县","");
array_3_8[15]=new ListBoxItem("130533","河北省威县","");
array_3_8[16]=new ListBoxItem("130534","河北省清河县","");
array_3_8[17]=new ListBoxItem("130535","河北省临西县","");
array_3_8[18]=new ListBoxItem("130581","河北省南宫市","");
array_3_8[19]=new ListBoxItem("130582","河北省沙河市","");
map.put(new Entry("130500",array_3_8));

var array_3_9=new Array();
array_3_9[0]=new ListBoxItem("130601","河北省保定市市辖区","");
array_3_9[1]=new ListBoxItem("130602","河北省保定市新市区","");
array_3_9[2]=new ListBoxItem("130603","河北省保定市北市区","");
array_3_9[3]=new ListBoxItem("130604","河北省保定市南市区","");
array_3_9[4]=new ListBoxItem("130621","河北省满城县","");
array_3_9[5]=new ListBoxItem("130622","河北省清苑县","");
array_3_9[6]=new ListBoxItem("130623","河北省涞水县","");
array_3_9[7]=new ListBoxItem("130624","河北省阜平县","");
array_3_9[8]=new ListBoxItem("130625","河北省徐水县","");
array_3_9[9]=new ListBoxItem("130626","河北省定兴县","");
array_3_9[10]=new ListBoxItem("130627","河北省唐县","");
array_3_9[11]=new ListBoxItem("130628","河北省高阳县","");
array_3_9[12]=new ListBoxItem("130629","河北省容城县","");
array_3_9[13]=new ListBoxItem("130630","河北省涞源县","");
array_3_9[14]=new ListBoxItem("130631","河北省望都县","");
array_3_9[15]=new ListBoxItem("130632","河北省安新县","");
array_3_9[16]=new ListBoxItem("130633","河北省易县","");
array_3_9[17]=new ListBoxItem("130634","河北省曲阳县","");
array_3_9[18]=new ListBoxItem("130635","河北省蠡县","");
array_3_9[19]=new ListBoxItem("130636","河北省顺平县","");
array_3_9[20]=new ListBoxItem("130637","河北省博野县","");
array_3_9[21]=new ListBoxItem("130638","河北省雄县","");
array_3_9[22]=new ListBoxItem("130681","河北省涿州市","");
array_3_9[23]=new ListBoxItem("130682","河北省定州市","");
array_3_9[24]=new ListBoxItem("130683","河北省安国市","");
array_3_9[25]=new ListBoxItem("130684","河北省高碑店市","");
map.put(new Entry("130600",array_3_9));

var array_3_10=new Array();
array_3_10[0]=new ListBoxItem("130701","河北省张家口市市辖区","");
array_3_10[1]=new ListBoxItem("130702","河北省张家口市桥东区","");
array_3_10[2]=new ListBoxItem("130703","河北省张家口市桥西区","");
array_3_10[3]=new ListBoxItem("130705","河北省张家口市宣化区","");
array_3_10[4]=new ListBoxItem("130706","河北省张家口市下花园区","");
array_3_10[5]=new ListBoxItem("130721","河北省宣化县","");
array_3_10[6]=new ListBoxItem("130722","河北省张北县","");
array_3_10[7]=new ListBoxItem("130723","河北省康保县","");
array_3_10[8]=new ListBoxItem("130724","河北省沽源县","");
array_3_10[9]=new ListBoxItem("130725","河北省尚义县","");
array_3_10[10]=new ListBoxItem("130726","河北省蔚县","");
array_3_10[11]=new ListBoxItem("130727","河北省阳原县","");
array_3_10[12]=new ListBoxItem("130728","河北省怀安县","");
array_3_10[13]=new ListBoxItem("130729","河北省万全县","");
array_3_10[14]=new ListBoxItem("130730","河北省怀来县","");
array_3_10[15]=new ListBoxItem("130731","河北省涿鹿县","");
array_3_10[16]=new ListBoxItem("130732","河北省赤城县","");
array_3_10[17]=new ListBoxItem("130733","河北省崇礼县","");
map.put(new Entry("130700",array_3_10));

var array_3_11=new Array();
array_3_11[0]=new ListBoxItem("130801","河北省承德市市辖区","");
array_3_11[1]=new ListBoxItem("130802","河北省承德市双桥区","");
array_3_11[2]=new ListBoxItem("130803","河北省承德市双滦区","");
array_3_11[3]=new ListBoxItem("130804","河北省承德市鹰手营子矿区","");
array_3_11[4]=new ListBoxItem("130821","河北省承德县","");
array_3_11[5]=new ListBoxItem("130822","河北省兴隆县","");
array_3_11[6]=new ListBoxItem("130823","河北省平泉县","");
array_3_11[7]=new ListBoxItem("130824","河北省滦平县","");
array_3_11[8]=new ListBoxItem("130825","河北省隆化县","");
array_3_11[9]=new ListBoxItem("130826","河北省丰宁满族自治县","");
array_3_11[10]=new ListBoxItem("130827","河北省宽城满族自治县","");
array_3_11[11]=new ListBoxItem("130828","河北省围场满族蒙古族自治县","");
map.put(new Entry("130800",array_3_11));

var array_3_12=new Array();
array_3_12[0]=new ListBoxItem("130901","河北省沧州市市辖区","");
array_3_12[1]=new ListBoxItem("130902","河北省沧州市新华区","");
array_3_12[2]=new ListBoxItem("130903","河北省沧州市运河区","");
array_3_12[3]=new ListBoxItem("130921","河北省沧县","");
array_3_12[4]=new ListBoxItem("130922","河北省青县","");
array_3_12[5]=new ListBoxItem("130923","河北省东光县","");
array_3_12[6]=new ListBoxItem("130924","河北省海兴县","");
array_3_12[7]=new ListBoxItem("130925","河北省盐山县","");
array_3_12[8]=new ListBoxItem("130926","河北省肃宁县","");
array_3_12[9]=new ListBoxItem("130927","河北省南皮县","");
array_3_12[10]=new ListBoxItem("130928","河北省吴桥县","");
array_3_12[11]=new ListBoxItem("130929","河北省献县","");
array_3_12[12]=new ListBoxItem("130930","河北省孟村回族自治县","");
array_3_12[13]=new ListBoxItem("130981","河北省泊头市","");
array_3_12[14]=new ListBoxItem("130982","河北省任丘市","");
array_3_12[15]=new ListBoxItem("130983","河北省黄骅市","");
array_3_12[16]=new ListBoxItem("130984","河北省河间市","");
map.put(new Entry("130900",array_3_12));

var array_3_13=new Array();
array_3_13[0]=new ListBoxItem("131001","河北省廊坊市市辖区","");
array_3_13[1]=new ListBoxItem("131002","河北省廊坊市安次区","");
array_3_13[2]=new ListBoxItem("131003","河北省廊坊市广阳区","");
array_3_13[3]=new ListBoxItem("131022","河北省固安县","");
array_3_13[4]=new ListBoxItem("131023","河北省永清县","");
array_3_13[5]=new ListBoxItem("131024","河北省香河县","");
array_3_13[6]=new ListBoxItem("131025","河北省大城县","");
array_3_13[7]=new ListBoxItem("131026","河北省文安县","");
array_3_13[8]=new ListBoxItem("131028","河北省大厂回族自治县","");
array_3_13[9]=new ListBoxItem("131081","河北省霸州市","");
array_3_13[10]=new ListBoxItem("131082","河北省三河市","");
map.put(new Entry("131000",array_3_13));

var array_3_14=new Array();
array_3_14[0]=new ListBoxItem("131101","河北省衡水市市辖区","");
array_3_14[1]=new ListBoxItem("131102","河北省衡水市桃城区","");
array_3_14[2]=new ListBoxItem("131121","河北省枣强县","");
array_3_14[3]=new ListBoxItem("131122","河北省武邑县","");
array_3_14[4]=new ListBoxItem("131123","河北省武强县","");
array_3_14[5]=new ListBoxItem("131124","河北省饶阳县","");
array_3_14[6]=new ListBoxItem("131125","河北省安平县","");
array_3_14[7]=new ListBoxItem("131126","河北省故城县","");
array_3_14[8]=new ListBoxItem("131127","河北省景县","");
array_3_14[9]=new ListBoxItem("131128","河北省阜城县","");
array_3_14[10]=new ListBoxItem("131181","河北省冀州市","");
array_3_14[11]=new ListBoxItem("131182","河北省深州市","");
map.put(new Entry("131100",array_3_14));

var array_3_15=new Array();
array_3_15[0]=new ListBoxItem("140101","山西省太原市市辖区","");
array_3_15[1]=new ListBoxItem("140105","山西省太原市小店区","");
array_3_15[2]=new ListBoxItem("140106","山西省太原市迎泽区","");
array_3_15[3]=new ListBoxItem("140107","山西省太原市杏花岭区","");
array_3_15[4]=new ListBoxItem("140108","山西省太原市尖草坪区","");
array_3_15[5]=new ListBoxItem("140109","山西省太原市万柏林区","");
array_3_15[6]=new ListBoxItem("140110","山西省太原市晋源区","");
array_3_15[7]=new ListBoxItem("140121","山西省清徐县","");
array_3_15[8]=new ListBoxItem("140122","山西省阳曲县","");
array_3_15[9]=new ListBoxItem("140123","山西省娄烦县","");
array_3_15[10]=new ListBoxItem("140181","山西省古交市","");
map.put(new Entry("140100",array_3_15));

var array_3_16=new Array();
array_3_16[0]=new ListBoxItem("140201","山西省大同市市辖区","");
array_3_16[1]=new ListBoxItem("140202","山西省大同市城区","");
array_3_16[2]=new ListBoxItem("140203","山西省大同市矿区","");
array_3_16[3]=new ListBoxItem("140211","山西省大同市南郊区","");
array_3_16[4]=new ListBoxItem("140212","山西省大同市新荣区","");
array_3_16[5]=new ListBoxItem("140221","山西省阳高县","");
array_3_16[6]=new ListBoxItem("140222","山西省天镇县","");
array_3_16[7]=new ListBoxItem("140223","山西省广灵县","");
array_3_16[8]=new ListBoxItem("140224","山西省灵丘县","");
array_3_16[9]=new ListBoxItem("140225","山西省浑源县","");
array_3_16[10]=new ListBoxItem("140226","山西省左云县","");
array_3_16[11]=new ListBoxItem("140227","山西省大同县","");
map.put(new Entry("140200",array_3_16));

var array_3_17=new Array();
array_3_17[0]=new ListBoxItem("140301","山西省阳泉市市辖区","");
array_3_17[1]=new ListBoxItem("140302","山西省阳泉市城区","");
array_3_17[2]=new ListBoxItem("140303","山西省阳泉市矿区","");
array_3_17[3]=new ListBoxItem("140311","山西省阳泉市郊区","");
array_3_17[4]=new ListBoxItem("140321","山西省平定县","");
array_3_17[5]=new ListBoxItem("140322","山西省盂县","");
map.put(new Entry("140300",array_3_17));

var array_3_18=new Array();
array_3_18[0]=new ListBoxItem("140401","山西省长治市市辖区","");
array_3_18[1]=new ListBoxItem("140402","山西省长治市城区","");
array_3_18[2]=new ListBoxItem("140411","山西省长治市郊区","");
array_3_18[3]=new ListBoxItem("140421","山西省长治县","");
array_3_18[4]=new ListBoxItem("140423","山西省襄垣县","");
array_3_18[5]=new ListBoxItem("140424","山西省屯留县","");
array_3_18[6]=new ListBoxItem("140425","山西省平顺县","");
array_3_18[7]=new ListBoxItem("140426","山西省黎城县","");
array_3_18[8]=new ListBoxItem("140427","山西省壶关县","");
array_3_18[9]=new ListBoxItem("140428","山西省长子县","");
array_3_18[10]=new ListBoxItem("140429","山西省武乡县","");
array_3_18[11]=new ListBoxItem("140430","山西省沁县","");
array_3_18[12]=new ListBoxItem("140431","山西省沁源县","");
array_3_18[13]=new ListBoxItem("140481","山西省潞城市","");
map.put(new Entry("140400",array_3_18));

var array_3_19=new Array();
array_3_19[0]=new ListBoxItem("140501","山西省晋城市市辖区","");
array_3_19[1]=new ListBoxItem("140502","山西省晋城市城区","");
array_3_19[2]=new ListBoxItem("140521","山西省沁水县","");
array_3_19[3]=new ListBoxItem("140522","山西省阳城县","");
array_3_19[4]=new ListBoxItem("140524","山西省陵川县","");
array_3_19[5]=new ListBoxItem("140525","山西省泽州县","");
array_3_19[6]=new ListBoxItem("140581","山西省高平市","");
map.put(new Entry("140500",array_3_19));

var array_3_20=new Array();
array_3_20[0]=new ListBoxItem("140601","山西省朔州市市辖区","");
array_3_20[1]=new ListBoxItem("140602","山西省朔州市朔城区","");
array_3_20[2]=new ListBoxItem("140603","山西省朔州市平鲁区","");
array_3_20[3]=new ListBoxItem("140621","山西省山阴县","");
array_3_20[4]=new ListBoxItem("140622","山西省应县","");
array_3_20[5]=new ListBoxItem("140623","山西省右玉县","");
array_3_20[6]=new ListBoxItem("140624","山西省怀仁县","");
map.put(new Entry("140600",array_3_20));

var array_3_21=new Array();
array_3_21[0]=new ListBoxItem("140701","山西省晋中市市辖区","");
array_3_21[1]=new ListBoxItem("140702","山西省晋中市榆次区","");
array_3_21[2]=new ListBoxItem("140721","山西省榆社县","");
array_3_21[3]=new ListBoxItem("140722","山西省左权县","");
array_3_21[4]=new ListBoxItem("140723","山西省和顺县","");
array_3_21[5]=new ListBoxItem("140724","山西省昔阳县","");
array_3_21[6]=new ListBoxItem("140725","山西省寿阳县","");
array_3_21[7]=new ListBoxItem("140726","山西省太谷县","");
array_3_21[8]=new ListBoxItem("140727","山西省祁县","");
array_3_21[9]=new ListBoxItem("140728","山西省平遥县","");
array_3_21[10]=new ListBoxItem("140729","山西省灵石县","");
array_3_21[11]=new ListBoxItem("140781","山西省介休市","");
map.put(new Entry("140700",array_3_21));

var array_3_22=new Array();
array_3_22[0]=new ListBoxItem("140801","山西省运城市市辖区","");
array_3_22[1]=new ListBoxItem("140802","山西省运城市盐湖区","");
array_3_22[2]=new ListBoxItem("140821","山西省临猗县","");
array_3_22[3]=new ListBoxItem("140822","山西省万荣县","");
array_3_22[4]=new ListBoxItem("140823","山西省闻喜县","");
array_3_22[5]=new ListBoxItem("140824","山西省稷山县","");
array_3_22[6]=new ListBoxItem("140825","山西省新绛县","");
array_3_22[7]=new ListBoxItem("140826","山西省绛县","");
array_3_22[8]=new ListBoxItem("140827","山西省垣曲县","");
array_3_22[9]=new ListBoxItem("140828","山西省夏县","");
array_3_22[10]=new ListBoxItem("140829","山西省平陆县","");
array_3_22[11]=new ListBoxItem("140830","山西省芮城县","");
array_3_22[12]=new ListBoxItem("140881","山西省永济市","");
array_3_22[13]=new ListBoxItem("140882","山西省河津市","");
map.put(new Entry("140800",array_3_22));

var array_3_23=new Array();
array_3_23[0]=new ListBoxItem("140901","山西省忻州市市辖区","");
array_3_23[1]=new ListBoxItem("140902","山西省忻州市忻府区","");
array_3_23[2]=new ListBoxItem("140921","山西省定襄县","");
array_3_23[3]=new ListBoxItem("140922","山西省五台县","");
array_3_23[4]=new ListBoxItem("140923","山西省代县","");
array_3_23[5]=new ListBoxItem("140924","山西省繁峙县","");
array_3_23[6]=new ListBoxItem("140925","山西省宁武县","");
array_3_23[7]=new ListBoxItem("140926","山西省静乐县","");
array_3_23[8]=new ListBoxItem("140927","山西省神池县","");
array_3_23[9]=new ListBoxItem("140928","山西省五寨县","");
array_3_23[10]=new ListBoxItem("140929","山西省岢岚县","");
array_3_23[11]=new ListBoxItem("140930","山西省河曲县","");
array_3_23[12]=new ListBoxItem("140931","山西省保德县","");
array_3_23[13]=new ListBoxItem("140932","山西省偏关县","");
array_3_23[14]=new ListBoxItem("140981","山西省原平市","");
map.put(new Entry("140900",array_3_23));

var array_3_24=new Array();
array_3_24[0]=new ListBoxItem("141001","山西省临汾市市辖区","");
array_3_24[1]=new ListBoxItem("141002","山西省临汾市尧都区","");
array_3_24[2]=new ListBoxItem("141021","山西省曲沃县","");
array_3_24[3]=new ListBoxItem("141022","山西省翼城县","");
array_3_24[4]=new ListBoxItem("141023","山西省襄汾县","");
array_3_24[5]=new ListBoxItem("141024","山西省洪洞县","");
array_3_24[6]=new ListBoxItem("141025","山西省古县","");
array_3_24[7]=new ListBoxItem("141026","山西省安泽县","");
array_3_24[8]=new ListBoxItem("141027","山西省浮山县","");
array_3_24[9]=new ListBoxItem("141028","山西省吉县","");
array_3_24[10]=new ListBoxItem("141029","山西省乡宁县","");
array_3_24[11]=new ListBoxItem("141030","山西省大宁县","");
array_3_24[12]=new ListBoxItem("141031","山西省隰县","");
array_3_24[13]=new ListBoxItem("141032","山西省永和县","");
array_3_24[14]=new ListBoxItem("141033","山西省蒲县","");
array_3_24[15]=new ListBoxItem("141034","山西省汾西县","");
array_3_24[16]=new ListBoxItem("141081","山西省侯马市","");
array_3_24[17]=new ListBoxItem("141082","山西省霍州市","");
map.put(new Entry("141000",array_3_24));

var array_3_25=new Array();
array_3_25[0]=new ListBoxItem("141101","山西省吕梁市市辖区","");
array_3_25[1]=new ListBoxItem("141102","山西省吕梁市离石区","");
array_3_25[2]=new ListBoxItem("141121","山西省文水县","");
array_3_25[3]=new ListBoxItem("141122","山西省交城县","");
array_3_25[4]=new ListBoxItem("141123","山西省兴县","");
array_3_25[5]=new ListBoxItem("141124","山西省临县","");
array_3_25[6]=new ListBoxItem("141125","山西省柳林县","");
array_3_25[7]=new ListBoxItem("141126","山西省石楼县","");
array_3_25[8]=new ListBoxItem("141127","山西省岚县","");
array_3_25[9]=new ListBoxItem("141128","山西省方山县","");
array_3_25[10]=new ListBoxItem("141129","山西省中阳县","");
array_3_25[11]=new ListBoxItem("141130","山西省交口县","");
array_3_25[12]=new ListBoxItem("141181","山西省孝义市","");
array_3_25[13]=new ListBoxItem("141182","山西省汾阳市","");
map.put(new Entry("141100",array_3_25));

var array_3_26=new Array();
array_3_26[0]=new ListBoxItem("150101","内蒙古自治区呼和浩特市市辖区","");
array_3_26[1]=new ListBoxItem("150102","内蒙古自治区呼和浩特市新城区","");
array_3_26[2]=new ListBoxItem("150103","内蒙古自治区呼和浩特市回民区","");
array_3_26[3]=new ListBoxItem("150104","内蒙古自治区呼和浩特市玉泉区","");
array_3_26[4]=new ListBoxItem("150105","内蒙古自治区呼和浩特市赛罕区","");
array_3_26[5]=new ListBoxItem("150121","内蒙古自治区土默特左旗","");
array_3_26[6]=new ListBoxItem("150122","内蒙古自治区托克托县","");
array_3_26[7]=new ListBoxItem("150123","内蒙古自治区和林格尔县","");
array_3_26[8]=new ListBoxItem("150124","内蒙古自治区清水河县","");
array_3_26[9]=new ListBoxItem("150125","内蒙古自治区武川县","");
map.put(new Entry("150100",array_3_26));

var array_3_27=new Array();
array_3_27[0]=new ListBoxItem("150201","内蒙古自治区包头市市辖区","");
array_3_27[1]=new ListBoxItem("150202","内蒙古自治区包头市东河区","");
array_3_27[2]=new ListBoxItem("150203","内蒙古自治区包头市昆都仑区","");
array_3_27[3]=new ListBoxItem("150204","内蒙古自治区包头市青山区","");
array_3_27[4]=new ListBoxItem("150205","内蒙古自治区包头市石拐区","");
array_3_27[5]=new ListBoxItem("150206","内蒙古自治区包头市白云矿区","");
array_3_27[6]=new ListBoxItem("150207","内蒙古自治区包头市九原区","");
array_3_27[7]=new ListBoxItem("150221","内蒙古自治区土默特右旗","");
array_3_27[8]=new ListBoxItem("150222","内蒙古自治区固阳县","");
array_3_27[9]=new ListBoxItem("150223","内蒙古自治区达尔罕茂明安联合旗","");
map.put(new Entry("150200",array_3_27));

var array_3_28=new Array();
array_3_28[0]=new ListBoxItem("150301","内蒙古自治区乌海市市辖区","");
array_3_28[1]=new ListBoxItem("150302","内蒙古自治区乌海市海勃湾区","");
array_3_28[2]=new ListBoxItem("150303","内蒙古自治区乌海市海南区","");
array_3_28[3]=new ListBoxItem("150304","内蒙古自治区乌海市乌达区","");
map.put(new Entry("150300",array_3_28));

var array_3_29=new Array();
array_3_29[0]=new ListBoxItem("150401","内蒙古自治区赤峰市市辖区","");
array_3_29[1]=new ListBoxItem("150402","内蒙古自治区赤峰市红山区","");
array_3_29[2]=new ListBoxItem("150403","内蒙古自治区赤峰市元宝山区","");
array_3_29[3]=new ListBoxItem("150404","内蒙古自治区赤峰市松山区","");
array_3_29[4]=new ListBoxItem("150421","内蒙古自治区阿鲁科尔沁旗","");
array_3_29[5]=new ListBoxItem("150422","内蒙古自治区巴林左旗","");
array_3_29[6]=new ListBoxItem("150423","内蒙古自治区巴林右旗","");
array_3_29[7]=new ListBoxItem("150424","内蒙古自治区林西县","");
array_3_29[8]=new ListBoxItem("150425","内蒙古自治区克什克腾旗","");
array_3_29[9]=new ListBoxItem("150426","内蒙古自治区翁牛特旗","");
array_3_29[10]=new ListBoxItem("150428","内蒙古自治区喀喇沁旗","");
array_3_29[11]=new ListBoxItem("150429","内蒙古自治区宁城县","");
array_3_29[12]=new ListBoxItem("150430","内蒙古自治区敖汉旗","");
map.put(new Entry("150400",array_3_29));

var array_3_30=new Array();
array_3_30[0]=new ListBoxItem("150501","内蒙古自治区通辽市市辖区","");
array_3_30[1]=new ListBoxItem("150502","内蒙古自治区通辽市科尔沁区","");
array_3_30[2]=new ListBoxItem("150521","内蒙古自治区科尔沁左翼中旗","");
array_3_30[3]=new ListBoxItem("150522","内蒙古自治区科尔沁左翼后旗","");
array_3_30[4]=new ListBoxItem("150523","内蒙古自治区开鲁县","");
array_3_30[5]=new ListBoxItem("150524","内蒙古自治区库伦旗","");
array_3_30[6]=new ListBoxItem("150525","内蒙古自治区奈曼旗","");
array_3_30[7]=new ListBoxItem("150526","内蒙古自治区扎鲁特旗","");
array_3_30[8]=new ListBoxItem("150581","内蒙古自治区霍林郭勒市","");
map.put(new Entry("150500",array_3_30));

var array_3_31=new Array();
array_3_31[0]=new ListBoxItem("150602","内蒙古自治区鄂尔多斯市东胜区","");
array_3_31[1]=new ListBoxItem("150621","内蒙古自治区达拉特旗","");
array_3_31[2]=new ListBoxItem("150622","内蒙古自治区准格尔旗","");
array_3_31[3]=new ListBoxItem("150623","内蒙古自治区鄂托克前旗","");
array_3_31[4]=new ListBoxItem("150624","内蒙古自治区鄂托克旗","");
array_3_31[5]=new ListBoxItem("150625","内蒙古自治区杭锦旗","");
array_3_31[6]=new ListBoxItem("150626","内蒙古自治区乌审旗","");
array_3_31[7]=new ListBoxItem("150627","内蒙古自治区伊金霍洛旗","");
map.put(new Entry("150600",array_3_31));

var array_3_32=new Array();
array_3_32[0]=new ListBoxItem("150701","内蒙古自治区呼伦贝尔市市辖区","");
array_3_32[1]=new ListBoxItem("150702","内蒙古自治区呼伦贝尔市海拉尔区","");
array_3_32[2]=new ListBoxItem("150721","内蒙古自治区阿荣旗","");
array_3_32[3]=new ListBoxItem("150722","内蒙古自治区莫力达瓦达斡尔族自治旗","");
array_3_32[4]=new ListBoxItem("150723","内蒙古自治区鄂伦春自治旗","");
array_3_32[5]=new ListBoxItem("150724","内蒙古自治区鄂温克族自治旗","");
array_3_32[6]=new ListBoxItem("150725","内蒙古自治区陈巴尔虎旗","");
array_3_32[7]=new ListBoxItem("150726","内蒙古自治区新巴尔虎左旗","");
array_3_32[8]=new ListBoxItem("150727","内蒙古自治区新巴尔虎右旗","");
array_3_32[9]=new ListBoxItem("150781","内蒙古自治区满洲里市","");
array_3_32[10]=new ListBoxItem("150782","内蒙古自治区牙克石市","");
array_3_32[11]=new ListBoxItem("150783","内蒙古自治区扎兰屯市","");
array_3_32[12]=new ListBoxItem("150784","内蒙古自治区额尔古纳市","");
array_3_32[13]=new ListBoxItem("150785","内蒙古自治区根河市","");
map.put(new Entry("150700",array_3_32));

var array_3_33=new Array();
array_3_33[0]=new ListBoxItem("150801","内蒙古自治区巴彦淖尔市市辖区","");
array_3_33[1]=new ListBoxItem("150802","内蒙古自治区巴彦淖尔市临河区","");
array_3_33[2]=new ListBoxItem("150821","内蒙古自治区五原县","");
array_3_33[3]=new ListBoxItem("150822","内蒙古自治区磴口县","");
array_3_33[4]=new ListBoxItem("150823","内蒙古自治区乌拉特前旗","");
array_3_33[5]=new ListBoxItem("150824","内蒙古自治区乌拉特中旗","");
array_3_33[6]=new ListBoxItem("150825","内蒙古自治区乌拉特后旗","");
array_3_33[7]=new ListBoxItem("150826","内蒙古自治区杭锦后旗","");
map.put(new Entry("150800",array_3_33));

var array_3_34=new Array();
array_3_34[0]=new ListBoxItem("150901","内蒙古自治区乌兰察布市市辖区","");
array_3_34[1]=new ListBoxItem("150902","内蒙古自治区乌兰察布市集宁区","");
array_3_34[2]=new ListBoxItem("150921","内蒙古自治区卓资县","");
array_3_34[3]=new ListBoxItem("150922","内蒙古自治区化德县","");
array_3_34[4]=new ListBoxItem("150923","内蒙古自治区商都县","");
array_3_34[5]=new ListBoxItem("150924","内蒙古自治区兴和县","");
array_3_34[6]=new ListBoxItem("150925","内蒙古自治区凉城县","");
array_3_34[7]=new ListBoxItem("150926","内蒙古自治区察哈尔右翼前旗","");
array_3_34[8]=new ListBoxItem("150927","内蒙古自治区察哈尔右翼中旗","");
array_3_34[9]=new ListBoxItem("150928","内蒙古自治区察哈尔右翼后旗","");
array_3_34[10]=new ListBoxItem("150929","内蒙古自治区四子王旗","");
array_3_34[11]=new ListBoxItem("150981","内蒙古自治区丰镇市","");
map.put(new Entry("150900",array_3_34));

var array_3_35=new Array();
array_3_35[0]=new ListBoxItem("152201","内蒙古自治区乌兰浩特市","");
array_3_35[1]=new ListBoxItem("152202","内蒙古自治区阿尔山市","");
array_3_35[2]=new ListBoxItem("152221","内蒙古自治区科尔沁右翼前旗","");
array_3_35[3]=new ListBoxItem("152222","内蒙古自治区科尔沁右翼中旗","");
array_3_35[4]=new ListBoxItem("152223","内蒙古自治区扎赉特旗","");
array_3_35[5]=new ListBoxItem("152224","内蒙古自治区突泉县","");
map.put(new Entry("152200",array_3_35));

var array_3_36=new Array();
array_3_36[0]=new ListBoxItem("152501","内蒙古自治区二连浩特市","");
array_3_36[1]=new ListBoxItem("152502","内蒙古自治区锡林浩特市","");
array_3_36[2]=new ListBoxItem("152522","内蒙古自治区阿巴嘎旗","");
array_3_36[3]=new ListBoxItem("152523","内蒙古自治区苏尼特左旗","");
array_3_36[4]=new ListBoxItem("152524","内蒙古自治区苏尼特右旗","");
array_3_36[5]=new ListBoxItem("152525","内蒙古自治区东乌珠穆沁旗","");
array_3_36[6]=new ListBoxItem("152526","内蒙古自治区西乌珠穆沁旗","");
array_3_36[7]=new ListBoxItem("152527","内蒙古自治区太仆寺旗","");
array_3_36[8]=new ListBoxItem("152528","内蒙古自治区镶黄旗","");
array_3_36[9]=new ListBoxItem("152529","内蒙古自治区正镶白旗","");
array_3_36[10]=new ListBoxItem("152530","内蒙古自治区正蓝旗","");
array_3_36[11]=new ListBoxItem("152531","内蒙古自治区多伦县","");
map.put(new Entry("152500",array_3_36));

var array_3_37=new Array();
map.put(new Entry("152600",array_3_37));

var array_3_38=new Array();
array_3_38[0]=new ListBoxItem("152921","内蒙古自治区阿拉善左旗","");
array_3_38[1]=new ListBoxItem("152922","内蒙古自治区阿拉善右旗","");
array_3_38[2]=new ListBoxItem("152923","内蒙古自治区额济纳旗","");
map.put(new Entry("152900",array_3_38));

var array_3_39=new Array();
array_3_39[0]=new ListBoxItem("210101","辽宁省沈阳市市辖区","");
array_3_39[1]=new ListBoxItem("210102","辽宁省沈阳市和平区","");
array_3_39[2]=new ListBoxItem("210103","辽宁省沈阳市沈河区","");
array_3_39[3]=new ListBoxItem("210104","辽宁省沈阳市大东区","");
array_3_39[4]=new ListBoxItem("210105","辽宁省沈阳市皇姑区","");
array_3_39[5]=new ListBoxItem("210106","辽宁省沈阳市铁西区","");
array_3_39[6]=new ListBoxItem("210111","辽宁省沈阳市苏家屯区","");
array_3_39[7]=new ListBoxItem("210112","辽宁省沈阳市东陵区","");
array_3_39[8]=new ListBoxItem("210113","辽宁省沈阳市新城子区","");
array_3_39[9]=new ListBoxItem("210114","辽宁省沈阳市于洪区","");
array_3_39[10]=new ListBoxItem("210122","辽宁省辽中县","");
array_3_39[11]=new ListBoxItem("210123","辽宁省康平县","");
array_3_39[12]=new ListBoxItem("210124","辽宁省法库县","");
array_3_39[13]=new ListBoxItem("210181","辽宁省新民市","");
map.put(new Entry("210100",array_3_39));

var array_3_40=new Array();
array_3_40[0]=new ListBoxItem("210201","辽宁省大连市市辖区","");
array_3_40[1]=new ListBoxItem("210202","辽宁省大连市中山区","");
array_3_40[2]=new ListBoxItem("210203","辽宁省大连市西岗区","");
array_3_40[3]=new ListBoxItem("210204","辽宁省大连市沙河口区","");
array_3_40[4]=new ListBoxItem("210211","辽宁省大连市甘井子区","");
array_3_40[5]=new ListBoxItem("210212","辽宁省大连市旅顺口区","");
array_3_40[6]=new ListBoxItem("210213","辽宁省大连市金州区","");
array_3_40[7]=new ListBoxItem("210224","辽宁省长海县","");
array_3_40[8]=new ListBoxItem("210281","辽宁省瓦房店市","");
array_3_40[9]=new ListBoxItem("210282","辽宁省普兰店市","");
array_3_40[10]=new ListBoxItem("210283","辽宁省庄河市","");
map.put(new Entry("210200",array_3_40));

var array_3_41=new Array();
array_3_41[0]=new ListBoxItem("210301","辽宁省鞍山市市辖区","");
array_3_41[1]=new ListBoxItem("210302","辽宁省鞍山市铁东区","");
array_3_41[2]=new ListBoxItem("210303","辽宁省鞍山市铁西区","");
array_3_41[3]=new ListBoxItem("210304","辽宁省鞍山市立山区","");
array_3_41[4]=new ListBoxItem("210311","辽宁省鞍山市千山区","");
array_3_41[5]=new ListBoxItem("210321","辽宁省台安县","");
array_3_41[6]=new ListBoxItem("210323","辽宁省岫岩满族自治县","");
array_3_41[7]=new ListBoxItem("210381","辽宁省海城市","");
map.put(new Entry("210300",array_3_41));

var array_3_42=new Array();
array_3_42[0]=new ListBoxItem("210401","辽宁省抚顺市市辖区","");
array_3_42[1]=new ListBoxItem("210402","辽宁省抚顺市新抚区","");
array_3_42[2]=new ListBoxItem("210403","辽宁省抚顺市东洲区","");
array_3_42[3]=new ListBoxItem("210404","辽宁省抚顺市望花区","");
array_3_42[4]=new ListBoxItem("210411","辽宁省抚顺市顺城区","");
array_3_42[5]=new ListBoxItem("210421","辽宁省抚顺县","");
array_3_42[6]=new ListBoxItem("210422","辽宁省新宾满族自治县","");
array_3_42[7]=new ListBoxItem("210423","辽宁省清原满族自治县","");
map.put(new Entry("210400",array_3_42));

var array_3_43=new Array();
array_3_43[0]=new ListBoxItem("210501","辽宁省本溪市市辖区","");
array_3_43[1]=new ListBoxItem("210502","辽宁省本溪市平山区","");
array_3_43[2]=new ListBoxItem("210503","辽宁省本溪市溪湖区","");
array_3_43[3]=new ListBoxItem("210504","辽宁省本溪市明山区","");
array_3_43[4]=new ListBoxItem("210505","辽宁省本溪市南芬区","");
array_3_43[5]=new ListBoxItem("210521","辽宁省本溪满族自治县","");
array_3_43[6]=new ListBoxItem("210522","辽宁省桓仁满族自治县","");
map.put(new Entry("210500",array_3_43));

var array_3_44=new Array();
array_3_44[0]=new ListBoxItem("210601","辽宁省丹东市市辖区","");
array_3_44[1]=new ListBoxItem("210602","辽宁省丹东市元宝区","");
array_3_44[2]=new ListBoxItem("210603","辽宁省丹东市振兴区","");
array_3_44[3]=new ListBoxItem("210604","辽宁省丹东市振安区","");
array_3_44[4]=new ListBoxItem("210624","辽宁省宽甸满族自治县","");
array_3_44[5]=new ListBoxItem("210681","辽宁省东港市","");
array_3_44[6]=new ListBoxItem("210682","辽宁省凤城市","");
map.put(new Entry("210600",array_3_44));

var array_3_45=new Array();
array_3_45[0]=new ListBoxItem("210701","辽宁省锦州市市辖区","");
array_3_45[1]=new ListBoxItem("210702","辽宁省锦州市古塔区","");
array_3_45[2]=new ListBoxItem("210703","辽宁省锦州市凌河区","");
array_3_45[3]=new ListBoxItem("210711","辽宁省锦州市太和区","");
array_3_45[4]=new ListBoxItem("210726","辽宁省黑山县","");
array_3_45[5]=new ListBoxItem("210727","辽宁省义县","");
array_3_45[6]=new ListBoxItem("210781","辽宁省凌海市","");
array_3_45[7]=new ListBoxItem("210782","辽宁省北宁市","");
map.put(new Entry("210700",array_3_45));

var array_3_46=new Array();
array_3_46[0]=new ListBoxItem("210801","辽宁省营口市市辖区","");
array_3_46[1]=new ListBoxItem("210802","辽宁省营口市站前区","");
array_3_46[2]=new ListBoxItem("210803","辽宁省营口市西市区","");
array_3_46[3]=new ListBoxItem("210804","辽宁省营口市鲅鱼圈区","");
array_3_46[4]=new ListBoxItem("210811","辽宁省营口市老边区","");
array_3_46[5]=new ListBoxItem("210881","辽宁省盖州市","");
array_3_46[6]=new ListBoxItem("210882","辽宁省大石桥市","");
map.put(new Entry("210800",array_3_46));

var array_3_47=new Array();
array_3_47[0]=new ListBoxItem("210901","辽宁省阜新市市辖区","");
array_3_47[1]=new ListBoxItem("210902","辽宁省阜新市海州区","");
array_3_47[2]=new ListBoxItem("210903","辽宁省阜新市新邱区","");
array_3_47[3]=new ListBoxItem("210904","辽宁省阜新市太平区","");
array_3_47[4]=new ListBoxItem("210905","辽宁省阜新市清河门区","");
array_3_47[5]=new ListBoxItem("210911","辽宁省阜新市细河区","");
array_3_47[6]=new ListBoxItem("210921","辽宁省阜新蒙古族自治县","");
array_3_47[7]=new ListBoxItem("210922","辽宁省彰武县","");
map.put(new Entry("210900",array_3_47));

var array_3_48=new Array();
array_3_48[0]=new ListBoxItem("211001","辽宁省辽阳市市辖区","");
array_3_48[1]=new ListBoxItem("211002","辽宁省辽阳市白塔区","");
array_3_48[2]=new ListBoxItem("211003","辽宁省辽阳市文圣区","");
array_3_48[3]=new ListBoxItem("211004","辽宁省辽阳市宏伟区","");
array_3_48[4]=new ListBoxItem("211005","辽宁省辽阳市弓长岭区","");
array_3_48[5]=new ListBoxItem("211011","辽宁省辽阳市太子河区","");
array_3_48[6]=new ListBoxItem("211021","辽宁省辽阳县","");
array_3_48[7]=new ListBoxItem("211081","辽宁省灯塔市","");
map.put(new Entry("211000",array_3_48));

var array_3_49=new Array();
array_3_49[0]=new ListBoxItem("211101","辽宁省盘锦市市辖区","");
array_3_49[1]=new ListBoxItem("211102","辽宁省盘锦市双台子区","");
array_3_49[2]=new ListBoxItem("211103","辽宁省盘锦市兴隆台区","");
array_3_49[3]=new ListBoxItem("211121","辽宁省大洼县","");
array_3_49[4]=new ListBoxItem("211122","辽宁省盘山县","");
map.put(new Entry("211100",array_3_49));

var array_3_50=new Array();
array_3_50[0]=new ListBoxItem("211201","辽宁省铁岭市市辖区","");
array_3_50[1]=new ListBoxItem("211202","辽宁省铁岭市银州区","");
array_3_50[2]=new ListBoxItem("211204","辽宁省铁岭市清河区","");
array_3_50[3]=new ListBoxItem("211221","辽宁省铁岭县","");
array_3_50[4]=new ListBoxItem("211223","辽宁省西丰县","");
array_3_50[5]=new ListBoxItem("211224","辽宁省昌图县","");
array_3_50[6]=new ListBoxItem("211281","辽宁省调兵山市","");
array_3_50[7]=new ListBoxItem("211282","辽宁省开原市","");
map.put(new Entry("211200",array_3_50));

var array_3_51=new Array();
array_3_51[0]=new ListBoxItem("211301","辽宁省朝阳市市辖区","");
array_3_51[1]=new ListBoxItem("211302","辽宁省朝阳市双塔区","");
array_3_51[2]=new ListBoxItem("211303","辽宁省朝阳市龙城区","");
array_3_51[3]=new ListBoxItem("211321","辽宁省朝阳县","");
array_3_51[4]=new ListBoxItem("211322","辽宁省建平县","");
array_3_51[5]=new ListBoxItem("211324","辽宁省喀喇沁左翼蒙古族自治县","");
array_3_51[6]=new ListBoxItem("211381","辽宁省北票市","");
array_3_51[7]=new ListBoxItem("211382","辽宁省凌源市","");
map.put(new Entry("211300",array_3_51));

var array_3_52=new Array();
array_3_52[0]=new ListBoxItem("211401","辽宁省葫芦岛市市辖区","");
array_3_52[1]=new ListBoxItem("211402","辽宁省葫芦岛市连山区","");
array_3_52[2]=new ListBoxItem("211403","辽宁省葫芦岛市龙港区","");
array_3_52[3]=new ListBoxItem("211404","辽宁省葫芦岛市南票区","");
array_3_52[4]=new ListBoxItem("211421","辽宁省绥中县","");
array_3_52[5]=new ListBoxItem("211422","辽宁省建昌县","");
array_3_52[6]=new ListBoxItem("211481","辽宁省兴城市","");
map.put(new Entry("211400",array_3_52));

var array_3_53=new Array();
array_3_53[0]=new ListBoxItem("220101","吉林省长春市市辖区","");
array_3_53[1]=new ListBoxItem("220102","吉林省长春市南关区","");
array_3_53[2]=new ListBoxItem("220103","吉林省长春市宽城区","");
array_3_53[3]=new ListBoxItem("220104","吉林省长春市朝阳区","");
array_3_53[4]=new ListBoxItem("220105","吉林省长春市二道区","");
array_3_53[5]=new ListBoxItem("220106","吉林省长春市绿园区","");
array_3_53[6]=new ListBoxItem("220112","吉林省长春市双阳区","");
array_3_53[7]=new ListBoxItem("220122","吉林省农安县","");
array_3_53[8]=new ListBoxItem("220181","吉林省九台市","");
array_3_53[9]=new ListBoxItem("220182","吉林省榆树市","");
array_3_53[10]=new ListBoxItem("220183","吉林省德惠市","");
map.put(new Entry("220100",array_3_53));

var array_3_54=new Array();
array_3_54[0]=new ListBoxItem("220201","吉林省吉林市市辖区","");
array_3_54[1]=new ListBoxItem("220202","吉林省吉林市昌邑区","");
array_3_54[2]=new ListBoxItem("220203","吉林省吉林市龙潭区","");
array_3_54[3]=new ListBoxItem("220204","吉林省吉林市船营区","");
array_3_54[4]=new ListBoxItem("220211","吉林省吉林市丰满区","");
array_3_54[5]=new ListBoxItem("220221","吉林省永吉县","");
array_3_54[6]=new ListBoxItem("220281","吉林省蛟河市","");
array_3_54[7]=new ListBoxItem("220282","吉林省桦甸市","");
array_3_54[8]=new ListBoxItem("220283","吉林省舒兰市","");
array_3_54[9]=new ListBoxItem("220284","吉林省磐石市","");
map.put(new Entry("220200",array_3_54));

var array_3_55=new Array();
array_3_55[0]=new ListBoxItem("220301","吉林省四平市市辖区","");
array_3_55[1]=new ListBoxItem("220302","吉林省四平市铁西区","");
array_3_55[2]=new ListBoxItem("220303","吉林省四平市铁东区","");
array_3_55[3]=new ListBoxItem("220322","吉林省梨树县","");
array_3_55[4]=new ListBoxItem("220323","吉林省伊通满族自治县","");
array_3_55[5]=new ListBoxItem("220381","吉林省公主岭市","");
array_3_55[6]=new ListBoxItem("220382","吉林省双辽市","");
map.put(new Entry("220300",array_3_55));

var array_3_56=new Array();
array_3_56[0]=new ListBoxItem("220401","吉林省辽源市市辖区","");
array_3_56[1]=new ListBoxItem("220402","吉林省辽源市龙山区","");
array_3_56[2]=new ListBoxItem("220403","吉林省辽源市西安区","");
array_3_56[3]=new ListBoxItem("220421","吉林省东丰县","");
array_3_56[4]=new ListBoxItem("220422","吉林省东辽县","");
map.put(new Entry("220400",array_3_56));

var array_3_57=new Array();
array_3_57[0]=new ListBoxItem("220501","吉林省通化市市辖区","");
array_3_57[1]=new ListBoxItem("220502","吉林省通化市东昌区","");
array_3_57[2]=new ListBoxItem("220503","吉林省通化市二道江区","");
array_3_57[3]=new ListBoxItem("220521","吉林省通化县","");
array_3_57[4]=new ListBoxItem("220523","吉林省辉南县","");
array_3_57[5]=new ListBoxItem("220524","吉林省柳河县","");
array_3_57[6]=new ListBoxItem("220581","吉林省梅河口市","");
array_3_57[7]=new ListBoxItem("220582","吉林省集安市","");
map.put(new Entry("220500",array_3_57));

var array_3_58=new Array();
array_3_58[0]=new ListBoxItem("220601","吉林省白山市市辖区","");
array_3_58[1]=new ListBoxItem("220602","吉林省白山市八道江区","");
array_3_58[2]=new ListBoxItem("220621","吉林省抚松县","");
array_3_58[3]=new ListBoxItem("220622","吉林省靖宇县","");
array_3_58[4]=new ListBoxItem("220623","吉林省长白朝鲜族自治县","");
array_3_58[5]=new ListBoxItem("220625","吉林省江源县","");
array_3_58[6]=new ListBoxItem("220681","吉林省临江市","");
map.put(new Entry("220600",array_3_58));

var array_3_59=new Array();
array_3_59[0]=new ListBoxItem("220701","吉林省松原市市辖区","");
array_3_59[1]=new ListBoxItem("220702","吉林省松原市宁江区","");
array_3_59[2]=new ListBoxItem("220721","吉林省前郭尔罗斯蒙古族自治县","");
array_3_59[3]=new ListBoxItem("220722","吉林省长岭县","");
array_3_59[4]=new ListBoxItem("220723","吉林省乾安县","");
array_3_59[5]=new ListBoxItem("220724","吉林省扶余县","");
map.put(new Entry("220700",array_3_59));

var array_3_60=new Array();
array_3_60[0]=new ListBoxItem("220801","吉林省白城市市辖区","");
array_3_60[1]=new ListBoxItem("220802","吉林省白城市洮北区","");
array_3_60[2]=new ListBoxItem("220821","吉林省镇赉县","");
array_3_60[3]=new ListBoxItem("220822","吉林省通榆县","");
array_3_60[4]=new ListBoxItem("220881","吉林省洮南市","");
array_3_60[5]=new ListBoxItem("220882","吉林省大安市","");
map.put(new Entry("220800",array_3_60));

var array_3_61=new Array();
array_3_61[0]=new ListBoxItem("222401","吉林省延吉市","");
array_3_61[1]=new ListBoxItem("222402","吉林省图们市","");
array_3_61[2]=new ListBoxItem("222403","吉林省敦化市","");
array_3_61[3]=new ListBoxItem("222404","吉林省珲春市","");
array_3_61[4]=new ListBoxItem("222405","吉林省龙井市","");
array_3_61[5]=new ListBoxItem("222406","吉林省和龙市","");
array_3_61[6]=new ListBoxItem("222424","吉林省汪清县","");
array_3_61[7]=new ListBoxItem("222426","吉林省安图县","");
map.put(new Entry("222400",array_3_61));

var array_3_62=new Array();
array_3_62[0]=new ListBoxItem("230101","黑龙江省哈尔滨市市辖区","");
array_3_62[1]=new ListBoxItem("230102","黑龙江省哈尔滨市道里区","");
array_3_62[2]=new ListBoxItem("230103","黑龙江省哈尔滨市南岗区","");
array_3_62[3]=new ListBoxItem("230104","黑龙江省哈尔滨市道外区","");
array_3_62[4]=new ListBoxItem("230105","黑龙江省哈尔滨市太平区","");
array_3_62[5]=new ListBoxItem("230106","黑龙江省哈尔滨市香坊区","");
array_3_62[6]=new ListBoxItem("230107","黑龙江省哈尔滨市动力区","");
array_3_62[7]=new ListBoxItem("230108","黑龙江省哈尔滨市平房区","");
array_3_62[8]=new ListBoxItem("230121","黑龙江省呼兰县","");
array_3_62[9]=new ListBoxItem("230123","黑龙江省依兰县","");
array_3_62[10]=new ListBoxItem("230124","黑龙江省方正县","");
array_3_62[11]=new ListBoxItem("230125","黑龙江省宾县","");
array_3_62[12]=new ListBoxItem("230126","黑龙江省巴彦县","");
array_3_62[13]=new ListBoxItem("230127","黑龙江省木兰县","");
array_3_62[14]=new ListBoxItem("230128","黑龙江省通河县","");
array_3_62[15]=new ListBoxItem("230129","黑龙江省延寿县","");
array_3_62[16]=new ListBoxItem("230181","黑龙江省阿城市","");
array_3_62[17]=new ListBoxItem("230182","黑龙江省双城市","");
array_3_62[18]=new ListBoxItem("230183","黑龙江省尚志市","");
array_3_62[19]=new ListBoxItem("230184","黑龙江省五常市","");
map.put(new Entry("230100",array_3_62));

var array_3_63=new Array();
array_3_63[0]=new ListBoxItem("230201","黑龙江省齐齐哈尔市市辖区","");
array_3_63[1]=new ListBoxItem("230202","黑龙江省齐齐哈尔市龙沙区","");
array_3_63[2]=new ListBoxItem("230203","黑龙江省齐齐哈尔市建华区","");
array_3_63[3]=new ListBoxItem("230204","黑龙江省齐齐哈尔市铁锋区","");
array_3_63[4]=new ListBoxItem("230205","黑龙江省齐齐哈尔市昂昂溪区","");
array_3_63[5]=new ListBoxItem("230206","黑龙江省齐齐哈尔市富拉尔基区","");
array_3_63[6]=new ListBoxItem("230207","黑龙江省齐齐哈尔市碾子山区","");
array_3_63[7]=new ListBoxItem("230208","黑龙江省齐齐哈尔市梅里斯达斡尔族区","");
array_3_63[8]=new ListBoxItem("230221","黑龙江省龙江县","");
array_3_63[9]=new ListBoxItem("230223","黑龙江省依安县","");
array_3_63[10]=new ListBoxItem("230224","黑龙江省泰来县","");
array_3_63[11]=new ListBoxItem("230225","黑龙江省甘南县","");
array_3_63[12]=new ListBoxItem("230227","黑龙江省富裕县","");
array_3_63[13]=new ListBoxItem("230229","黑龙江省克山县","");
array_3_63[14]=new ListBoxItem("230230","黑龙江省克东县","");
array_3_63[15]=new ListBoxItem("230231","黑龙江省拜泉县","");
array_3_63[16]=new ListBoxItem("230281","黑龙江省讷河市","");
map.put(new Entry("230200",array_3_63));

var array_3_64=new Array();
array_3_64[0]=new ListBoxItem("230301","黑龙江省鸡西市市辖区","");
array_3_64[1]=new ListBoxItem("230302","黑龙江省鸡西市鸡冠区","");
array_3_64[2]=new ListBoxItem("230303","黑龙江省鸡西市恒山区","");
array_3_64[3]=new ListBoxItem("230304","黑龙江省鸡西市滴道区","");
array_3_64[4]=new ListBoxItem("230305","黑龙江省鸡西市梨树区","");
array_3_64[5]=new ListBoxItem("230306","黑龙江省鸡西市城子河区","");
array_3_64[6]=new ListBoxItem("230307","黑龙江省鸡西市麻山区","");
array_3_64[7]=new ListBoxItem("230321","黑龙江省鸡东县","");
array_3_64[8]=new ListBoxItem("230381","黑龙江省虎林市","");
array_3_64[9]=new ListBoxItem("230382","黑龙江省密山市","");
map.put(new Entry("230300",array_3_64));

var array_3_65=new Array();
array_3_65[0]=new ListBoxItem("230401","黑龙江省鹤岗市市辖区","");
array_3_65[1]=new ListBoxItem("230402","黑龙江省鹤岗市向阳区","");
array_3_65[2]=new ListBoxItem("230403","黑龙江省鹤岗市工农区","");
array_3_65[3]=new ListBoxItem("230404","黑龙江省鹤岗市南山区","");
array_3_65[4]=new ListBoxItem("230405","黑龙江省鹤岗市兴安区","");
array_3_65[5]=new ListBoxItem("230406","黑龙江省鹤岗市东山区","");
array_3_65[6]=new ListBoxItem("230407","黑龙江省鹤岗市兴山区","");
array_3_65[7]=new ListBoxItem("230421","黑龙江省萝北县","");
array_3_65[8]=new ListBoxItem("230422","黑龙江省绥滨县","");
map.put(new Entry("230400",array_3_65));

var array_3_66=new Array();
array_3_66[0]=new ListBoxItem("230501","黑龙江省双鸭山市市辖区","");
array_3_66[1]=new ListBoxItem("230502","黑龙江省双鸭山市尖山区","");
array_3_66[2]=new ListBoxItem("230503","黑龙江省双鸭山市岭东区","");
array_3_66[3]=new ListBoxItem("230505","黑龙江省双鸭山市四方台区","");
array_3_66[4]=new ListBoxItem("230506","黑龙江省双鸭山市宝山区","");
array_3_66[5]=new ListBoxItem("230521","黑龙江省集贤县","");
array_3_66[6]=new ListBoxItem("230522","黑龙江省友谊县","");
array_3_66[7]=new ListBoxItem("230523","黑龙江省黑龙江省宝清县","");
array_3_66[8]=new ListBoxItem("230524","黑龙江省饶河县","");
map.put(new Entry("230500",array_3_66));

var array_3_67=new Array();
array_3_67[0]=new ListBoxItem("230601","黑龙江省大庆市市辖区","");
array_3_67[1]=new ListBoxItem("230602","黑龙江省大庆市萨尔图区","");
array_3_67[2]=new ListBoxItem("230603","黑龙江省大庆市龙凤区","");
array_3_67[3]=new ListBoxItem("230604","黑龙江省大庆市让胡路区","");
array_3_67[4]=new ListBoxItem("230605","黑龙江省大庆市红岗区","");
array_3_67[5]=new ListBoxItem("230606","黑龙江省大庆市大同区","");
array_3_67[6]=new ListBoxItem("230621","黑龙江省肇州县","");
array_3_67[7]=new ListBoxItem("230622","黑龙江省肇源县","");
array_3_67[8]=new ListBoxItem("230623","黑龙江省林甸县","");
array_3_67[9]=new ListBoxItem("230624","黑龙江省杜尔伯特蒙古族自治县","");
map.put(new Entry("230600",array_3_67));

var array_3_68=new Array();
array_3_68[0]=new ListBoxItem("230701","黑龙江省伊春市市辖区","");
array_3_68[1]=new ListBoxItem("230702","黑龙江省伊春市伊春区","");
array_3_68[2]=new ListBoxItem("230703","黑龙江省伊春市南岔区","");
array_3_68[3]=new ListBoxItem("230704","黑龙江省伊春市友好区","");
array_3_68[4]=new ListBoxItem("230705","黑龙江省伊春市西林区","");
array_3_68[5]=new ListBoxItem("230706","黑龙江省伊春市翠峦区","");
array_3_68[6]=new ListBoxItem("230707","黑龙江省伊春市新青区","");
array_3_68[7]=new ListBoxItem("230708","黑龙江省伊春市美溪区","");
array_3_68[8]=new ListBoxItem("230709","黑龙江省伊春市金山屯区","");
array_3_68[9]=new ListBoxItem("230710","黑龙江省伊春市五营区","");
array_3_68[10]=new ListBoxItem("230711","黑龙江省伊春市乌马河区","");
array_3_68[11]=new ListBoxItem("230712","黑龙江省伊春市汤旺河区","");
array_3_68[12]=new ListBoxItem("230713","黑龙江省伊春市带岭区","");
array_3_68[13]=new ListBoxItem("230714","黑龙江省伊春市乌伊岭区","");
array_3_68[14]=new ListBoxItem("230715","黑龙江省伊春市红星区","");
array_3_68[15]=new ListBoxItem("230716","黑龙江省伊春市上甘岭区","");
array_3_68[16]=new ListBoxItem("230722","黑龙江省嘉荫县","");
array_3_68[17]=new ListBoxItem("230781","黑龙江省铁力市","");
map.put(new Entry("230700",array_3_68));

var array_3_69=new Array();
array_3_69[0]=new ListBoxItem("230801","黑龙江省佳木斯市市辖区","");
array_3_69[1]=new ListBoxItem("230802","黑龙江省佳木斯市永红区","");
array_3_69[2]=new ListBoxItem("230803","黑龙江省佳木斯市向阳区","");
array_3_69[3]=new ListBoxItem("230804","黑龙江省佳木斯市前进区","");
array_3_69[4]=new ListBoxItem("230805","黑龙江省佳木斯市东风区","");
array_3_69[5]=new ListBoxItem("230811","黑龙江省佳木斯市郊区","");
array_3_69[6]=new ListBoxItem("230822","黑龙江省桦南县","");
array_3_69[7]=new ListBoxItem("230826","黑龙江省桦川县","");
array_3_69[8]=new ListBoxItem("230828","黑龙江省汤原县","");
array_3_69[9]=new ListBoxItem("230833","黑龙江省抚远县","");
array_3_69[10]=new ListBoxItem("230881","黑龙江省同江市","");
array_3_69[11]=new ListBoxItem("230882","黑龙江省富锦市","");
map.put(new Entry("230800",array_3_69));

var array_3_70=new Array();
array_3_70[0]=new ListBoxItem("230901","黑龙江省七台河市市辖区","");
array_3_70[1]=new ListBoxItem("230902","黑龙江省七台河市新兴区","");
array_3_70[2]=new ListBoxItem("230903","黑龙江省七台河市桃山区","");
array_3_70[3]=new ListBoxItem("230904","黑龙江省七台河市茄子河区","");
array_3_70[4]=new ListBoxItem("230921","黑龙江省勃利县","");
map.put(new Entry("230900",array_3_70));

var array_3_71=new Array();
array_3_71[0]=new ListBoxItem("231001","黑龙江省牡丹江市市辖区","");
array_3_71[1]=new ListBoxItem("231002","黑龙江省牡丹江市东安区","");
array_3_71[2]=new ListBoxItem("231003","黑龙江省牡丹江市阳明区","");
array_3_71[3]=new ListBoxItem("231004","黑龙江省牡丹江市爱民区","");
array_3_71[4]=new ListBoxItem("231005","黑龙江省牡丹江市西安区","");
array_3_71[5]=new ListBoxItem("231024","黑龙江省东宁县","");
array_3_71[6]=new ListBoxItem("231025","黑龙江省林口县","");
array_3_71[7]=new ListBoxItem("231081","黑龙江省绥芬河市","");
array_3_71[8]=new ListBoxItem("231083","黑龙江省海林市","");
array_3_71[9]=new ListBoxItem("231084","黑龙江省宁安市","");
array_3_71[10]=new ListBoxItem("231085","黑龙江省穆棱市","");
map.put(new Entry("231000",array_3_71));

var array_3_72=new Array();
array_3_72[0]=new ListBoxItem("231101","黑龙江省黑河市市辖区","");
array_3_72[1]=new ListBoxItem("231102","黑龙江省黑河市爱辉区","");
array_3_72[2]=new ListBoxItem("231121","黑龙江省嫩江县","");
array_3_72[3]=new ListBoxItem("231123","黑龙江省逊克县","");
array_3_72[4]=new ListBoxItem("231124","黑龙江省孙吴县","");
array_3_72[5]=new ListBoxItem("231181","黑龙江省北安市","");
array_3_72[6]=new ListBoxItem("231182","黑龙江省五大连池市","");
map.put(new Entry("231100",array_3_72));

var array_3_73=new Array();
array_3_73[0]=new ListBoxItem("231201","黑龙江省绥化市市辖区","");
array_3_73[1]=new ListBoxItem("231202","黑龙江省绥化市北林区","");
array_3_73[2]=new ListBoxItem("231221","黑龙江省望奎县","");
array_3_73[3]=new ListBoxItem("231222","黑龙江省兰西县","");
array_3_73[4]=new ListBoxItem("231223","黑龙江省青冈县","");
array_3_73[5]=new ListBoxItem("231224","黑龙江省庆安县","");
array_3_73[6]=new ListBoxItem("231225","黑龙江省明水县","");
array_3_73[7]=new ListBoxItem("231226","黑龙江省绥棱县","");
array_3_73[8]=new ListBoxItem("231281","黑龙江省安达市","");
array_3_73[9]=new ListBoxItem("231282","黑龙江省肇东市","");
array_3_73[10]=new ListBoxItem("231283","黑龙江省海伦市","");
map.put(new Entry("231200",array_3_73));

var array_3_74=new Array();
array_3_74[0]=new ListBoxItem("232721","黑龙江省呼玛县","");
array_3_74[1]=new ListBoxItem("232722","黑龙江省塔河县","");
array_3_74[2]=new ListBoxItem("232723","黑龙江省漠河县","");
map.put(new Entry("232700",array_3_74));

var array_3_75=new Array();
array_3_75[0]=new ListBoxItem("310101","上海市黄浦区","");
array_3_75[1]=new ListBoxItem("310103","上海市卢湾区","");
array_3_75[2]=new ListBoxItem("310104","上海市徐汇区","");
array_3_75[3]=new ListBoxItem("310105","上海市长宁区","");
array_3_75[4]=new ListBoxItem("310106","上海市静安区","");
array_3_75[5]=new ListBoxItem("310107","上海市普陀区","");
array_3_75[6]=new ListBoxItem("310108","上海市闸北区","");
array_3_75[7]=new ListBoxItem("310109","上海市虹口区","");
array_3_75[8]=new ListBoxItem("310110","上海市杨浦区","");
array_3_75[9]=new ListBoxItem("310112","上海市闵行区","");
array_3_75[10]=new ListBoxItem("310113","上海市宝山区","");
array_3_75[11]=new ListBoxItem("310114","上海市嘉定区","");
array_3_75[12]=new ListBoxItem("310115","上海市浦东新区","");
array_3_75[13]=new ListBoxItem("310116","上海市金山区","");
array_3_75[14]=new ListBoxItem("310117","上海市松江区","");
array_3_75[15]=new ListBoxItem("310118","上海市青浦区","");
array_3_75[16]=new ListBoxItem("310119","上海市南汇区","");
array_3_75[17]=new ListBoxItem("310120","上海市奉贤区","");
map.put(new Entry("310100",array_3_75));

var array_3_76=new Array();
array_3_76[0]=new ListBoxItem("310230","上海市崇明县","");
map.put(new Entry("310200",array_3_76));

var array_3_77=new Array();
array_3_77[0]=new ListBoxItem("320101","江苏省南京市市辖区","");
array_3_77[1]=new ListBoxItem("320102","江苏省南京市玄武区","");
array_3_77[2]=new ListBoxItem("320103","江苏省南京市白下区","");
array_3_77[3]=new ListBoxItem("320104","江苏省南京市秦淮区","");
array_3_77[4]=new ListBoxItem("320105","江苏省南京市建邺区","");
array_3_77[5]=new ListBoxItem("320106","江苏省南京市鼓楼区","");
array_3_77[6]=new ListBoxItem("320107","江苏省南京市下关区","");
array_3_77[7]=new ListBoxItem("320111","江苏省南京市浦口区","");
array_3_77[8]=new ListBoxItem("320113","江苏省南京市栖霞区","");
array_3_77[9]=new ListBoxItem("320114","江苏省南京市雨花台区","");
array_3_77[10]=new ListBoxItem("320115","江苏省南京市江宁区","");
array_3_77[11]=new ListBoxItem("320116","江苏省南京市六合区","");
array_3_77[12]=new ListBoxItem("320124","江苏省溧水县","");
array_3_77[13]=new ListBoxItem("320125","江苏省高淳县","");
map.put(new Entry("320100",array_3_77));

var array_3_78=new Array();
array_3_78[0]=new ListBoxItem("320201","江苏省无锡市市辖区","");
array_3_78[1]=new ListBoxItem("320202","江苏省无锡市崇安区","");
array_3_78[2]=new ListBoxItem("320203","江苏省无锡市南长区","");
array_3_78[3]=new ListBoxItem("320204","江苏省无锡市北塘区","");
array_3_78[4]=new ListBoxItem("320205","江苏省无锡市锡山区","");
array_3_78[5]=new ListBoxItem("320206","江苏省无锡市惠山区","");
array_3_78[6]=new ListBoxItem("320211","江苏省无锡市滨湖区","");
array_3_78[7]=new ListBoxItem("320281","江苏省江阴市","");
array_3_78[8]=new ListBoxItem("320282","江苏省宜兴市","");
map.put(new Entry("320200",array_3_78));

var array_3_79=new Array();
array_3_79[0]=new ListBoxItem("320301","江苏省徐州市市辖区","");
array_3_79[1]=new ListBoxItem("320302","江苏省徐州市鼓楼区","");
array_3_79[2]=new ListBoxItem("320303","江苏省徐州市云龙区","");
array_3_79[3]=new ListBoxItem("320304","江苏省徐州市九里区","");
array_3_79[4]=new ListBoxItem("320305","江苏省徐州市贾汪区","");
array_3_79[5]=new ListBoxItem("320311","江苏省徐州市泉山区","");
array_3_79[6]=new ListBoxItem("320321","江苏省丰县","");
array_3_79[7]=new ListBoxItem("320322","江苏省沛县","");
array_3_79[8]=new ListBoxItem("320323","江苏省铜山县","");
array_3_79[9]=new ListBoxItem("320324","江苏省睢宁县","");
array_3_79[10]=new ListBoxItem("320381","江苏省新沂市","");
array_3_79[11]=new ListBoxItem("320382","江苏省邳州市","");
map.put(new Entry("320300",array_3_79));

var array_3_80=new Array();
array_3_80[0]=new ListBoxItem("320401","江苏省常州市市辖区","");
array_3_80[1]=new ListBoxItem("320402","江苏省常州市天宁区","");
array_3_80[2]=new ListBoxItem("320404","江苏省常州市钟楼区","");
array_3_80[3]=new ListBoxItem("320405","江苏省常州市戚墅堰区","");
array_3_80[4]=new ListBoxItem("320411","江苏省常州市新北区","");
array_3_80[5]=new ListBoxItem("320412","江苏省常州市武进区","");
array_3_80[6]=new ListBoxItem("320481","江苏省溧阳市","");
array_3_80[7]=new ListBoxItem("320482","江苏省金坛市","");
map.put(new Entry("320400",array_3_80));

var array_3_81=new Array();
array_3_81[0]=new ListBoxItem("320501","江苏省苏州市市辖区","");
array_3_81[1]=new ListBoxItem("320502","江苏省苏州市沧浪区","");
array_3_81[2]=new ListBoxItem("320503","江苏省苏州市平江区","");
array_3_81[3]=new ListBoxItem("320504","江苏省苏州市金阊区","");
array_3_81[4]=new ListBoxItem("320505","江苏省苏州市虎丘区","");
array_3_81[5]=new ListBoxItem("320506","江苏省苏州市吴中区","");
array_3_81[6]=new ListBoxItem("320507","江苏省苏州市相城区","");
array_3_81[7]=new ListBoxItem("320581","江苏省常熟市","");
array_3_81[8]=new ListBoxItem("320582","江苏省张家港市","");
array_3_81[9]=new ListBoxItem("320583","江苏省昆山市","");
array_3_81[10]=new ListBoxItem("320584","江苏省吴江市","");
array_3_81[11]=new ListBoxItem("320585","江苏省太仓市","");
map.put(new Entry("320500",array_3_81));

var array_3_82=new Array();
array_3_82[0]=new ListBoxItem("320601","江苏省南通市市辖区","");
array_3_82[1]=new ListBoxItem("320602","江苏省南通市崇川区","");
array_3_82[2]=new ListBoxItem("320611","江苏省南通市港闸区","");
array_3_82[3]=new ListBoxItem("320621","江苏省海安县","");
array_3_82[4]=new ListBoxItem("320623","江苏省如东县","");
array_3_82[5]=new ListBoxItem("320681","江苏省启东市","");
array_3_82[6]=new ListBoxItem("320682","江苏省如皋市","");
array_3_82[7]=new ListBoxItem("320683","江苏省通州市","");
array_3_82[8]=new ListBoxItem("320684","江苏省海门市","");
map.put(new Entry("320600",array_3_82));

var array_3_83=new Array();
array_3_83[0]=new ListBoxItem("320701","江苏省连云港市市辖区","");
array_3_83[1]=new ListBoxItem("320703","江苏省连云港市连云区","");
array_3_83[2]=new ListBoxItem("320705","江苏省连云港市新浦区","");
array_3_83[3]=new ListBoxItem("320706","江苏省连云港市海州区","");
array_3_83[4]=new ListBoxItem("320721","江苏省赣榆县","");
array_3_83[5]=new ListBoxItem("320722","江苏省东海县","");
array_3_83[6]=new ListBoxItem("320723","江苏省灌云县","");
array_3_83[7]=new ListBoxItem("320724","江苏省灌南县","");
map.put(new Entry("320700",array_3_83));

var array_3_84=new Array();
array_3_84[0]=new ListBoxItem("320801","江苏省淮安市市辖区","");
array_3_84[1]=new ListBoxItem("320802","江苏省淮安市清河区","");
array_3_84[2]=new ListBoxItem("320803","江苏省淮安市楚州区","");
array_3_84[3]=new ListBoxItem("320804","江苏省淮安市淮阴区","");
array_3_84[4]=new ListBoxItem("320811","江苏省淮安市清浦区","");
array_3_84[5]=new ListBoxItem("320826","江苏省涟水县","");
array_3_84[6]=new ListBoxItem("320829","江苏省洪泽县","");
array_3_84[7]=new ListBoxItem("320830","江苏省盱眙县","");
array_3_84[8]=new ListBoxItem("320831","江苏省金湖县","");
map.put(new Entry("320800",array_3_84));

var array_3_85=new Array();
array_3_85[0]=new ListBoxItem("320901","江苏省盐城市市辖区","");
array_3_85[1]=new ListBoxItem("320902","江苏省盐城市亭湖区","");
array_3_85[2]=new ListBoxItem("320903","江苏省盐城市盐都区","");
array_3_85[3]=new ListBoxItem("320921","江苏省响水县","");
array_3_85[4]=new ListBoxItem("320922","江苏省滨海县","");
array_3_85[5]=new ListBoxItem("320923","江苏省阜宁县","");
array_3_85[6]=new ListBoxItem("320924","江苏省射阳县","");
array_3_85[7]=new ListBoxItem("320925","江苏省建湖县","");
array_3_85[8]=new ListBoxItem("320981","江苏省东台市","");
array_3_85[9]=new ListBoxItem("320982","江苏省大丰市","");
map.put(new Entry("320900",array_3_85));

var array_3_86=new Array();
array_3_86[0]=new ListBoxItem("321001","江苏省扬州市市辖区","");
array_3_86[1]=new ListBoxItem("321002","江苏省扬州市广陵区","");
array_3_86[2]=new ListBoxItem("321003","江苏省扬州市邗江区","");
array_3_86[3]=new ListBoxItem("321011","江苏省扬州市郊区","");
array_3_86[4]=new ListBoxItem("321023","江苏省宝应县","");
array_3_86[5]=new ListBoxItem("321081","江苏省仪征市","");
array_3_86[6]=new ListBoxItem("321084","江苏省高邮市","");
array_3_86[7]=new ListBoxItem("321088","江苏省江都市","");
map.put(new Entry("321000",array_3_86));

var array_3_87=new Array();
array_3_87[0]=new ListBoxItem("321101","江苏省镇江市市辖区","");
array_3_87[1]=new ListBoxItem("321102","江苏省镇江市京口区","");
array_3_87[2]=new ListBoxItem("321111","江苏省镇江市润州区","");
array_3_87[3]=new ListBoxItem("321112","江苏省镇江市丹徒区","");
array_3_87[4]=new ListBoxItem("321181","江苏省丹阳市","");
array_3_87[5]=new ListBoxItem("321182","江苏省扬中市","");
array_3_87[6]=new ListBoxItem("321183","江苏省句容市","");
map.put(new Entry("321100",array_3_87));

var array_3_88=new Array();
array_3_88[0]=new ListBoxItem("321201","江苏省泰州市市辖区","");
array_3_88[1]=new ListBoxItem("321202","江苏省泰州市海陵区","");
array_3_88[2]=new ListBoxItem("321203","江苏省泰州市高港区","");
array_3_88[3]=new ListBoxItem("321281","江苏省兴化市","");
array_3_88[4]=new ListBoxItem("321282","江苏省靖江市","");
array_3_88[5]=new ListBoxItem("321283","江苏省泰兴市","");
array_3_88[6]=new ListBoxItem("321284","江苏省姜堰市","");
map.put(new Entry("321200",array_3_88));

var array_3_89=new Array();
array_3_89[0]=new ListBoxItem("321301","江苏省宿迁市市辖区","");
array_3_89[1]=new ListBoxItem("321302","江苏省宿迁市宿城区","");
array_3_89[2]=new ListBoxItem("321321","江苏省宿豫县","");
array_3_89[3]=new ListBoxItem("321322","江苏省沭阳县","");
array_3_89[4]=new ListBoxItem("321323","江苏省泗阳县","");
array_3_89[5]=new ListBoxItem("321324","江苏省泗洪县","");
map.put(new Entry("321300",array_3_89));

var array_3_90=new Array();
array_3_90[0]=new ListBoxItem("330101","浙江省杭州市市辖区","");
array_3_90[1]=new ListBoxItem("330102","浙江省杭州市上城区","");
array_3_90[2]=new ListBoxItem("330103","浙江省杭州市下城区","");
array_3_90[3]=new ListBoxItem("330104","浙江省杭州市江干区","");
array_3_90[4]=new ListBoxItem("330105","浙江省杭州市拱墅区","");
array_3_90[5]=new ListBoxItem("330106","浙江省杭州市西湖区","");
array_3_90[6]=new ListBoxItem("330108","浙江省杭州市滨江区","");
array_3_90[7]=new ListBoxItem("330109","浙江省杭州市萧山区","");
array_3_90[8]=new ListBoxItem("330110","浙江省杭州市余杭区","");
array_3_90[9]=new ListBoxItem("330122","浙江省桐庐县","");
array_3_90[10]=new ListBoxItem("330127","浙江省淳安县","");
array_3_90[11]=new ListBoxItem("330182","浙江省建德市","");
array_3_90[12]=new ListBoxItem("330183","浙江省富阳市","");
array_3_90[13]=new ListBoxItem("330185","浙江省临安市","");
map.put(new Entry("330100",array_3_90));

var array_3_91=new Array();
array_3_91[0]=new ListBoxItem("330201","浙江省宁波市市辖区","");
array_3_91[1]=new ListBoxItem("330203","浙江省宁波市海曙区","");
array_3_91[2]=new ListBoxItem("330204","浙江省宁波市江东区","");
array_3_91[3]=new ListBoxItem("330205","浙江省宁波市江北区","");
array_3_91[4]=new ListBoxItem("330206","浙江省宁波市北仑区","");
array_3_91[5]=new ListBoxItem("330211","浙江省宁波市镇海区","");
array_3_91[6]=new ListBoxItem("330212","浙江省宁波市鄞州区","");
array_3_91[7]=new ListBoxItem("330225","浙江省象山县","");
array_3_91[8]=new ListBoxItem("330226","浙江省宁海县","");
array_3_91[9]=new ListBoxItem("330281","浙江省余姚市","");
array_3_91[10]=new ListBoxItem("330282","浙江省慈溪市","");
array_3_91[11]=new ListBoxItem("330283","浙江省奉化市","");
map.put(new Entry("330200",array_3_91));

var array_3_92=new Array();
array_3_92[0]=new ListBoxItem("330301","浙江省温州市市辖区","");
array_3_92[1]=new ListBoxItem("330302","浙江省温州市鹿城区","");
array_3_92[2]=new ListBoxItem("330303","浙江省温州市龙湾区","");
array_3_92[3]=new ListBoxItem("330304","浙江省温州市瓯海区","");
array_3_92[4]=new ListBoxItem("330322","浙江省洞头县","");
array_3_92[5]=new ListBoxItem("330324","浙江省永嘉县","");
array_3_92[6]=new ListBoxItem("330326","浙江省平阳县","");
array_3_92[7]=new ListBoxItem("330327","浙江省苍南县","");
array_3_92[8]=new ListBoxItem("330328","浙江省文成县","");
array_3_92[9]=new ListBoxItem("330329","浙江省泰顺县","");
array_3_92[10]=new ListBoxItem("330381","浙江省瑞安市","");
array_3_92[11]=new ListBoxItem("330382","浙江省乐清市","");
map.put(new Entry("330300",array_3_92));

var array_3_93=new Array();
array_3_93[0]=new ListBoxItem("330401","浙江省嘉兴市市辖区","");
array_3_93[1]=new ListBoxItem("330402","浙江省嘉兴市秀城区","");
array_3_93[2]=new ListBoxItem("330411","浙江省嘉兴市秀洲区","");
array_3_93[3]=new ListBoxItem("330421","浙江省嘉善县","");
array_3_93[4]=new ListBoxItem("330424","浙江省海盐县","");
array_3_93[5]=new ListBoxItem("330481","浙江省海宁市","");
array_3_93[6]=new ListBoxItem("330482","浙江省平湖市","");
array_3_93[7]=new ListBoxItem("330483","浙江省桐乡市","");
map.put(new Entry("330400",array_3_93));

var array_3_94=new Array();
array_3_94[0]=new ListBoxItem("330501","浙江省湖州市市辖区","");
array_3_94[1]=new ListBoxItem("330502","浙江省湖州市吴兴区","");
array_3_94[2]=new ListBoxItem("330503","浙江省湖州市南浔区","");
array_3_94[3]=new ListBoxItem("330521","浙江省德清县","");
array_3_94[4]=new ListBoxItem("330522","浙江省长兴县","");
array_3_94[5]=new ListBoxItem("330523","浙江省安吉县","");
map.put(new Entry("330500",array_3_94));

var array_3_95=new Array();
array_3_95[0]=new ListBoxItem("330601","浙江省绍兴市市辖区","");
array_3_95[1]=new ListBoxItem("330602","浙江省绍兴市越城区","");
array_3_95[2]=new ListBoxItem("330621","浙江省绍兴县","");
array_3_95[3]=new ListBoxItem("330624","浙江省新昌县","");
array_3_95[4]=new ListBoxItem("330681","浙江省诸暨市","");
array_3_95[5]=new ListBoxItem("330682","浙江省上虞市","");
array_3_95[6]=new ListBoxItem("330683","浙江省嵊州市","");
map.put(new Entry("330600",array_3_95));

var array_3_96=new Array();
array_3_96[0]=new ListBoxItem("330701","浙江省金华市市辖区","");
array_3_96[1]=new ListBoxItem("330702","浙江省金华市婺城区","");
array_3_96[2]=new ListBoxItem("330703","浙江省金华市金东区","");
array_3_96[3]=new ListBoxItem("330723","浙江省武义县","");
array_3_96[4]=new ListBoxItem("330726","浙江省浦江县","");
array_3_96[5]=new ListBoxItem("330727","浙江省磐安县","");
array_3_96[6]=new ListBoxItem("330781","浙江省兰溪市","");
array_3_96[7]=new ListBoxItem("330782","浙江省义乌市","");
array_3_96[8]=new ListBoxItem("330783","浙江省东阳市","");
array_3_96[9]=new ListBoxItem("330784","浙江省永康市","");
map.put(new Entry("330700",array_3_96));

var array_3_97=new Array();
array_3_97[0]=new ListBoxItem("330801","浙江省衢州市市辖区","");
array_3_97[1]=new ListBoxItem("330802","浙江省衢州市柯城区","");
array_3_97[2]=new ListBoxItem("330803","浙江省衢州市衢江区","");
array_3_97[3]=new ListBoxItem("330822","浙江省常山县","");
array_3_97[4]=new ListBoxItem("330824","浙江省开化县","");
array_3_97[5]=new ListBoxItem("330825","浙江省龙游县","");
array_3_97[6]=new ListBoxItem("330881","浙江省江山市","");
map.put(new Entry("330800",array_3_97));

var array_3_98=new Array();
array_3_98[0]=new ListBoxItem("330901","浙江省舟山市市辖区","");
array_3_98[1]=new ListBoxItem("330902","浙江省舟山市定海区","");
array_3_98[2]=new ListBoxItem("330903","浙江省舟山市普陀区","");
array_3_98[3]=new ListBoxItem("330921","浙江省岱山县","");
array_3_98[4]=new ListBoxItem("330922","浙江省嵊泗县","");
map.put(new Entry("330900",array_3_98));

var array_3_99=new Array();
array_3_99[0]=new ListBoxItem("331001","浙江省台州市市辖区","");
array_3_99[1]=new ListBoxItem("331002","浙江省台州市椒江区","");
array_3_99[2]=new ListBoxItem("331003","浙江省台州市黄岩区","");
array_3_99[3]=new ListBoxItem("331004","浙江省台州市路桥区","");
array_3_99[4]=new ListBoxItem("331021","浙江省玉环县","");
array_3_99[5]=new ListBoxItem("331022","浙江省三门县","");
array_3_99[6]=new ListBoxItem("331023","浙江省天台县","");
array_3_99[7]=new ListBoxItem("331024","浙江省仙居县","");
array_3_99[8]=new ListBoxItem("331081","浙江省温岭市","");
array_3_99[9]=new ListBoxItem("331082","浙江省临海市","");
map.put(new Entry("331000",array_3_99));

var array_3_100=new Array();
array_3_100[0]=new ListBoxItem("331101","浙江省丽水市市辖区","");
array_3_100[1]=new ListBoxItem("331102","浙江省丽水市莲都区","");
array_3_100[2]=new ListBoxItem("331121","浙江省青田县","");
array_3_100[3]=new ListBoxItem("331122","浙江省缙云县","");
array_3_100[4]=new ListBoxItem("331123","浙江省遂昌县","");
array_3_100[5]=new ListBoxItem("331124","浙江省松阳县","");
array_3_100[6]=new ListBoxItem("331125","浙江省云和县","");
array_3_100[7]=new ListBoxItem("331126","浙江省庆元县","");
array_3_100[8]=new ListBoxItem("331127","浙江省景宁畲族自治县","");
array_3_100[9]=new ListBoxItem("331181","浙江省龙泉市","");
map.put(new Entry("331100",array_3_100));

var array_3_101=new Array();
array_3_101[0]=new ListBoxItem("340101","安徽省合肥市市辖区","");
array_3_101[1]=new ListBoxItem("340102","安徽省合肥市瑶海区","");
array_3_101[2]=new ListBoxItem("340103","安徽省合肥市庐阳区","");
array_3_101[3]=new ListBoxItem("340104","安徽省合肥市蜀山区","");
array_3_101[4]=new ListBoxItem("340111","安徽省合肥市包河区","");
array_3_101[5]=new ListBoxItem("340121","安徽省长丰县","");
array_3_101[6]=new ListBoxItem("340122","安徽省肥东县","");
array_3_101[7]=new ListBoxItem("340123","安徽省肥西县","");
map.put(new Entry("340100",array_3_101));

var array_3_102=new Array();
array_3_102[0]=new ListBoxItem("340201","安徽省芜湖市市辖区","");
array_3_102[1]=new ListBoxItem("340202","安徽省芜湖市镜湖区","");
array_3_102[2]=new ListBoxItem("340203","安徽省芜湖市马塘区","");
array_3_102[3]=new ListBoxItem("340204","安徽省芜湖市新芜区","");
array_3_102[4]=new ListBoxItem("340207","安徽省芜湖市鸠江区","");
array_3_102[5]=new ListBoxItem("340221","安徽省芜湖县","");
array_3_102[6]=new ListBoxItem("340222","安徽省繁昌县","");
array_3_102[7]=new ListBoxItem("340223","安徽省南陵县","");
map.put(new Entry("340200",array_3_102));

var array_3_103=new Array();
array_3_103[0]=new ListBoxItem("340301","安徽省蚌埠市市辖区","");
array_3_103[1]=new ListBoxItem("340302","安徽省蚌埠市东市区","");
array_3_103[2]=new ListBoxItem("340303","安徽省蚌埠市中市区","");
array_3_103[3]=new ListBoxItem("340304","安徽省蚌埠市西市区","");
array_3_103[4]=new ListBoxItem("340311","安徽省蚌埠市郊区","");
array_3_103[5]=new ListBoxItem("340321","安徽省怀远县","");
array_3_103[6]=new ListBoxItem("340322","安徽省五河县","");
array_3_103[7]=new ListBoxItem("340323","安徽省固镇县","");
map.put(new Entry("340300",array_3_103));

var array_3_104=new Array();
array_3_104[0]=new ListBoxItem("340401","安徽省淮南市市辖区","");
array_3_104[1]=new ListBoxItem("340402","安徽省淮南市大通区","");
array_3_104[2]=new ListBoxItem("340403","安徽省淮南市田家庵区","");
array_3_104[3]=new ListBoxItem("340404","安徽省淮南市谢家集区","");
array_3_104[4]=new ListBoxItem("340405","安徽省淮南市八公山区","");
array_3_104[5]=new ListBoxItem("340406","安徽省淮南市潘集区","");
array_3_104[6]=new ListBoxItem("340421","安徽省凤台县","");
map.put(new Entry("340400",array_3_104));

var array_3_105=new Array();
array_3_105[0]=new ListBoxItem("340501","安徽省马鞍山市市辖区","");
array_3_105[1]=new ListBoxItem("340502","安徽省马鞍山市金家庄区","");
array_3_105[2]=new ListBoxItem("340503","安徽省马鞍山市花山区","");
array_3_105[3]=new ListBoxItem("340504","安徽省马鞍山市雨山区","");
array_3_105[4]=new ListBoxItem("340521","安徽省当涂县","");
map.put(new Entry("340500",array_3_105));

var array_3_106=new Array();
array_3_106[0]=new ListBoxItem("340601","安徽省淮北市市辖区","");
array_3_106[1]=new ListBoxItem("340602","安徽省淮北市杜集区","");
array_3_106[2]=new ListBoxItem("340603","安徽省淮北市相山区","");
array_3_106[3]=new ListBoxItem("340604","安徽省淮北市烈山区","");
array_3_106[4]=new ListBoxItem("340621","安徽省濉溪县","");
map.put(new Entry("340600",array_3_106));

var array_3_107=new Array();
array_3_107[0]=new ListBoxItem("340701","安徽省铜陵市市辖区","");
array_3_107[1]=new ListBoxItem("340702","安徽省铜陵市铜官山区","");
array_3_107[2]=new ListBoxItem("340703","安徽省铜陵市狮子山区","");
array_3_107[3]=new ListBoxItem("340711","安徽省铜陵市郊区","");
array_3_107[4]=new ListBoxItem("340721","安徽省铜陵县","");
map.put(new Entry("340700",array_3_107));

var array_3_108=new Array();
array_3_108[0]=new ListBoxItem("340801","安徽省安庆市市辖区","");
array_3_108[1]=new ListBoxItem("340802","安徽省安庆市迎江区","");
array_3_108[2]=new ListBoxItem("340803","安徽省安庆市大观区","");
array_3_108[3]=new ListBoxItem("340811","安徽省安庆市郊区","");
array_3_108[4]=new ListBoxItem("340822","安徽省怀宁县","");
array_3_108[5]=new ListBoxItem("340823","安徽省枞阳县","");
array_3_108[6]=new ListBoxItem("340824","安徽省潜山县","");
array_3_108[7]=new ListBoxItem("340825","安徽省太湖县","");
array_3_108[8]=new ListBoxItem("340826","安徽省宿松县","");
array_3_108[9]=new ListBoxItem("340827","安徽省望江县","");
array_3_108[10]=new ListBoxItem("340828","安徽省岳西县","");
array_3_108[11]=new ListBoxItem("340881","安徽省桐城市","");
map.put(new Entry("340800",array_3_108));

var array_3_109=new Array();
array_3_109[0]=new ListBoxItem("341001","安徽省黄山市市辖区","");
array_3_109[1]=new ListBoxItem("341002","安徽省黄山市屯溪区","");
array_3_109[2]=new ListBoxItem("341003","安徽省黄山市黄山区","");
array_3_109[3]=new ListBoxItem("341004","安徽省黄山市徽州区","");
array_3_109[4]=new ListBoxItem("341021","安徽省歙县","");
array_3_109[5]=new ListBoxItem("341022","安徽省休宁县","");
array_3_109[6]=new ListBoxItem("341023","安徽省黟县","");
array_3_109[7]=new ListBoxItem("341024","安徽省祁门县","");
map.put(new Entry("341000",array_3_109));

var array_3_110=new Array();
array_3_110[0]=new ListBoxItem("341101","安徽省滁州市市辖区","");
array_3_110[1]=new ListBoxItem("341102","安徽省滁州市琅琊区","");
array_3_110[2]=new ListBoxItem("341103","安徽省滁州市南谯区","");
array_3_110[3]=new ListBoxItem("341122","安徽省来安县","");
array_3_110[4]=new ListBoxItem("341124","安徽省全椒县","");
array_3_110[5]=new ListBoxItem("341125","安徽省定远县","");
array_3_110[6]=new ListBoxItem("341126","安徽省凤阳县","");
array_3_110[7]=new ListBoxItem("341181","安徽省天长市","");
array_3_110[8]=new ListBoxItem("341182","安徽省明光市","");
map.put(new Entry("341100",array_3_110));

var array_3_111=new Array();
array_3_111[0]=new ListBoxItem("341201","安徽省阜阳市市辖区","");
array_3_111[1]=new ListBoxItem("341202","安徽省阜阳市颍州区","");
array_3_111[2]=new ListBoxItem("341203","安徽省阜阳市颍东区","");
array_3_111[3]=new ListBoxItem("341204","安徽省阜阳市颍泉区","");
array_3_111[4]=new ListBoxItem("341221","安徽省临泉县","");
array_3_111[5]=new ListBoxItem("341222","安徽省太和县","");
array_3_111[6]=new ListBoxItem("341225","安徽省阜南县","");
array_3_111[7]=new ListBoxItem("341226","安徽省颍上县","");
array_3_111[8]=new ListBoxItem("341282","安徽省界首市","");
map.put(new Entry("341200",array_3_111));

var array_3_112=new Array();
array_3_112[0]=new ListBoxItem("341301","安徽省宿州市市辖区","");
array_3_112[1]=new ListBoxItem("341302","安徽省宿州市墉桥区","");
array_3_112[2]=new ListBoxItem("341321","安徽省砀山县","");
array_3_112[3]=new ListBoxItem("341322","安徽省萧县","");
array_3_112[4]=new ListBoxItem("341323","安徽省灵璧县","");
array_3_112[5]=new ListBoxItem("341324","安徽省泗县","");
map.put(new Entry("341300",array_3_112));

var array_3_113=new Array();
array_3_113[0]=new ListBoxItem("341401","安徽省巢湖市市辖区","");
array_3_113[1]=new ListBoxItem("341402","安徽省巢湖市居巢区","");
array_3_113[2]=new ListBoxItem("341421","安徽省庐江县","");
array_3_113[3]=new ListBoxItem("341422","安徽省无为县","");
array_3_113[4]=new ListBoxItem("341423","安徽省含山县","");
array_3_113[5]=new ListBoxItem("341424","安徽省和县","");
map.put(new Entry("341400",array_3_113));

var array_3_114=new Array();
array_3_114[0]=new ListBoxItem("341501","安徽省六安市市辖区","");
array_3_114[1]=new ListBoxItem("341502","安徽省六安市金安区","");
array_3_114[2]=new ListBoxItem("341503","安徽省六安市裕安区","");
array_3_114[3]=new ListBoxItem("341521","安徽省寿县","");
array_3_114[4]=new ListBoxItem("341522","安徽省霍邱县","");
array_3_114[5]=new ListBoxItem("341523","安徽省舒城县","");
array_3_114[6]=new ListBoxItem("341524","安徽省金寨县","");
array_3_114[7]=new ListBoxItem("341525","安徽省霍山县","");
map.put(new Entry("341500",array_3_114));

var array_3_115=new Array();
array_3_115[0]=new ListBoxItem("341601","安徽省亳州市市辖区","");
array_3_115[1]=new ListBoxItem("341602","安徽省亳州市谯城区","");
array_3_115[2]=new ListBoxItem("341621","安徽省涡阳县","");
array_3_115[3]=new ListBoxItem("341622","安徽省蒙城县","");
array_3_115[4]=new ListBoxItem("341623","安徽省利辛县","");
map.put(new Entry("341600",array_3_115));

var array_3_116=new Array();
array_3_116[0]=new ListBoxItem("341701","安徽省池州市市辖区","");
array_3_116[1]=new ListBoxItem("341702","安徽省池州市贵池区","");
array_3_116[2]=new ListBoxItem("341721","安徽省东至县","");
array_3_116[3]=new ListBoxItem("341722","安徽省石台县","");
array_3_116[4]=new ListBoxItem("341723","安徽省青阳县","");
map.put(new Entry("341700",array_3_116));

var array_3_117=new Array();
array_3_117[0]=new ListBoxItem("341801","安徽省宣城市市辖区","");
array_3_117[1]=new ListBoxItem("341802","安徽省宣城市宣州区","");
array_3_117[2]=new ListBoxItem("341821","安徽省郎溪县","");
array_3_117[3]=new ListBoxItem("341822","安徽省广德县","");
array_3_117[4]=new ListBoxItem("341823","安徽省泾县","");
array_3_117[5]=new ListBoxItem("341824","安徽省绩溪县","");
array_3_117[6]=new ListBoxItem("341825","安徽省旌德县","");
array_3_117[7]=new ListBoxItem("341881","安徽省宁国市","");
map.put(new Entry("341800",array_3_117));

var array_3_118=new Array();
array_3_118[0]=new ListBoxItem("350101","福建省福州市市辖区","");
array_3_118[1]=new ListBoxItem("350102","福建省福州市鼓楼区","");
array_3_118[2]=new ListBoxItem("350103","福建省福州市台江区","");
array_3_118[3]=new ListBoxItem("350104","福建省福州市仓山区","");
array_3_118[4]=new ListBoxItem("350105","福建省福州市马尾区","");
array_3_118[5]=new ListBoxItem("350111","福建省福州市晋安区","");
array_3_118[6]=new ListBoxItem("350121","福建省闽侯县","");
array_3_118[7]=new ListBoxItem("350122","福建省连江县","");
array_3_118[8]=new ListBoxItem("350123","福建省罗源县","");
array_3_118[9]=new ListBoxItem("350124","福建省闽清县","");
array_3_118[10]=new ListBoxItem("350125","福建省永泰县","");
array_3_118[11]=new ListBoxItem("350128","福建省平潭县","");
array_3_118[12]=new ListBoxItem("350181","福建省福清市","");
array_3_118[13]=new ListBoxItem("350182","福建省长乐市","");
map.put(new Entry("350100",array_3_118));

var array_3_119=new Array();
array_3_119[0]=new ListBoxItem("350201","福建省厦门市市辖区","");
array_3_119[1]=new ListBoxItem("350203","福建省厦门市思明区","");
array_3_119[2]=new ListBoxItem("350205","福建省厦门市海沧区","");
array_3_119[3]=new ListBoxItem("350206","福建省厦门市湖里区","");
array_3_119[4]=new ListBoxItem("350211","福建省厦门市集美区","");
array_3_119[5]=new ListBoxItem("350212","福建省厦门市同安区","");
array_3_119[6]=new ListBoxItem("350213","福建省厦门市翔安区","");
map.put(new Entry("350200",array_3_119));

var array_3_120=new Array();
array_3_120[0]=new ListBoxItem("350301","福建省莆田市市辖区","");
array_3_120[1]=new ListBoxItem("350302","福建省莆田市城厢区","");
array_3_120[2]=new ListBoxItem("350303","福建省莆田市涵江区","");
array_3_120[3]=new ListBoxItem("350304","福建省莆田市荔城区","");
array_3_120[4]=new ListBoxItem("350305","福建省莆田市秀屿区","");
array_3_120[5]=new ListBoxItem("350322","福建省仙游县","");
map.put(new Entry("350300",array_3_120));

var array_3_121=new Array();
array_3_121[0]=new ListBoxItem("350401","福建省三明市市辖区","");
array_3_121[1]=new ListBoxItem("350402","福建省三明市梅列区","");
array_3_121[2]=new ListBoxItem("350403","福建省三明市三元区","");
array_3_121[3]=new ListBoxItem("350421","福建省明溪县","");
array_3_121[4]=new ListBoxItem("350423","福建省清流县","");
array_3_121[5]=new ListBoxItem("350424","福建省宁化县","");
array_3_121[6]=new ListBoxItem("350425","福建省大田县","");
array_3_121[7]=new ListBoxItem("350426","福建省尤溪县","");
array_3_121[8]=new ListBoxItem("350427","福建省沙县","");
array_3_121[9]=new ListBoxItem("350428","福建省将乐县","");
array_3_121[10]=new ListBoxItem("350429","福建省泰宁县","");
array_3_121[11]=new ListBoxItem("350430","福建省建宁县","");
array_3_121[12]=new ListBoxItem("350481","福建省永安市","");
map.put(new Entry("350400",array_3_121));

var array_3_122=new Array();
array_3_122[0]=new ListBoxItem("350501","福建省泉州市市辖区","");
array_3_122[1]=new ListBoxItem("350502","福建省泉州市鲤城区","");
array_3_122[2]=new ListBoxItem("350503","福建省泉州市丰泽区","");
array_3_122[3]=new ListBoxItem("350504","福建省泉州市洛江区","");
array_3_122[4]=new ListBoxItem("350505","福建省泉州市泉港区","");
array_3_122[5]=new ListBoxItem("350521","福建省惠安县","");
array_3_122[6]=new ListBoxItem("350524","福建省安溪县","");
array_3_122[7]=new ListBoxItem("350525","福建省永春县","");
array_3_122[8]=new ListBoxItem("350526","福建省德化县","");
array_3_122[9]=new ListBoxItem("350527","福建省金门县","");
array_3_122[10]=new ListBoxItem("350581","福建省石狮市","");
array_3_122[11]=new ListBoxItem("350582","福建省晋江市","");
array_3_122[12]=new ListBoxItem("350583","福建省南安市","");
map.put(new Entry("350500",array_3_122));

var array_3_123=new Array();
array_3_123[0]=new ListBoxItem("350601","福建省漳州市市辖区","");
array_3_123[1]=new ListBoxItem("350602","福建省漳州市芗城区","");
array_3_123[2]=new ListBoxItem("350603","福建省漳州市龙文区","");
array_3_123[3]=new ListBoxItem("350622","福建省云霄县","");
array_3_123[4]=new ListBoxItem("350623","福建省漳浦县","");
array_3_123[5]=new ListBoxItem("350624","福建省诏安县","");
array_3_123[6]=new ListBoxItem("350625","福建省长泰县","");
array_3_123[7]=new ListBoxItem("350626","福建省东山县","");
array_3_123[8]=new ListBoxItem("350627","福建省南靖县","");
array_3_123[9]=new ListBoxItem("350628","福建省平和县","");
array_3_123[10]=new ListBoxItem("350629","福建省华安县","");
array_3_123[11]=new ListBoxItem("350681","福建省龙海市","");
map.put(new Entry("350600",array_3_123));

var array_3_124=new Array();
array_3_124[0]=new ListBoxItem("350701","福建省南平市市辖区","");
array_3_124[1]=new ListBoxItem("350702","福建省南平市延平区","");
array_3_124[2]=new ListBoxItem("350721","福建省顺昌县","");
array_3_124[3]=new ListBoxItem("350722","福建省浦城县","");
array_3_124[4]=new ListBoxItem("350723","福建省光泽县","");
array_3_124[5]=new ListBoxItem("350724","福建省松溪县","");
array_3_124[6]=new ListBoxItem("350725","福建省政和县","");
array_3_124[7]=new ListBoxItem("350781","福建省邵武市","");
array_3_124[8]=new ListBoxItem("350782","福建省武夷山市","");
array_3_124[9]=new ListBoxItem("350783","福建省建瓯市","");
array_3_124[10]=new ListBoxItem("350784","福建省建阳市","");
map.put(new Entry("350700",array_3_124));

var array_3_125=new Array();
array_3_125[0]=new ListBoxItem("350801","福建省龙岩市市辖区","");
array_3_125[1]=new ListBoxItem("350802","福建省龙岩市新罗区","");
array_3_125[2]=new ListBoxItem("350821","福建省长汀县","");
array_3_125[3]=new ListBoxItem("350822","福建省永定县","");
array_3_125[4]=new ListBoxItem("350823","福建省上杭县","");
array_3_125[5]=new ListBoxItem("350824","福建省武平县","");
array_3_125[6]=new ListBoxItem("350825","福建省连城县","");
array_3_125[7]=new ListBoxItem("350881","福建省漳平市","");
map.put(new Entry("350800",array_3_125));

var array_3_126=new Array();
array_3_126[0]=new ListBoxItem("350901","福建省宁德市市辖区","");
array_3_126[1]=new ListBoxItem("350902","福建省宁德市蕉城区","");
array_3_126[2]=new ListBoxItem("350921","福建省霞浦县","");
array_3_126[3]=new ListBoxItem("350922","福建省古田县","");
array_3_126[4]=new ListBoxItem("350923","福建省屏南县","");
array_3_126[5]=new ListBoxItem("350924","福建省寿宁县","");
array_3_126[6]=new ListBoxItem("350925","福建省周宁县","");
array_3_126[7]=new ListBoxItem("350926","福建省柘荣县","");
array_3_126[8]=new ListBoxItem("350981","福建省福安市","");
array_3_126[9]=new ListBoxItem("350982","福建省福鼎市","");
map.put(new Entry("350900",array_3_126));

var array_3_127=new Array();
array_3_127[0]=new ListBoxItem("360101","江西省南昌市市辖区","");
array_3_127[1]=new ListBoxItem("360102","江西省南昌市东湖区","");
array_3_127[2]=new ListBoxItem("360103","江西省南昌市西湖区","");
array_3_127[3]=new ListBoxItem("360104","江西省南昌市青云谱区","");
array_3_127[4]=new ListBoxItem("360105","江西省南昌市湾里区","");
array_3_127[5]=new ListBoxItem("360111","江西省南昌市青山湖区","");
array_3_127[6]=new ListBoxItem("360121","江西省南昌县","");
array_3_127[7]=new ListBoxItem("360122","江西省新建县","");
array_3_127[8]=new ListBoxItem("360123","江西省安义县","");
array_3_127[9]=new ListBoxItem("360124","江西省进贤县","");
map.put(new Entry("360100",array_3_127));

var array_3_128=new Array();
array_3_128[0]=new ListBoxItem("360201","江西省景德镇市市辖区","");
array_3_128[1]=new ListBoxItem("360202","江西省景德镇市昌江区","");
array_3_128[2]=new ListBoxItem("360203","江西省景德镇市珠山区","");
array_3_128[3]=new ListBoxItem("360222","江西省浮梁县","");
array_3_128[4]=new ListBoxItem("360281","江西省乐平市","");
map.put(new Entry("360200",array_3_128));

var array_3_129=new Array();
array_3_129[0]=new ListBoxItem("360301","江西省萍乡市市辖区","");
array_3_129[1]=new ListBoxItem("360302","江西省萍乡市安源区","");
array_3_129[2]=new ListBoxItem("360313","江西省萍乡市湘东区","");
array_3_129[3]=new ListBoxItem("360321","江西省莲花县","");
array_3_129[4]=new ListBoxItem("360322","江西省上栗县","");
array_3_129[5]=new ListBoxItem("360323","江西省芦溪县","");
map.put(new Entry("360300",array_3_129));

var array_3_130=new Array();
array_3_130[0]=new ListBoxItem("360401","江西省九江市市辖区","");
array_3_130[1]=new ListBoxItem("360402","江西省九江市庐山区","");
array_3_130[2]=new ListBoxItem("360403","江西省九江市浔阳区","");
array_3_130[3]=new ListBoxItem("360421","江西省九江县","");
array_3_130[4]=new ListBoxItem("360423","江西省武宁县","");
array_3_130[5]=new ListBoxItem("360424","江西省修水县","");
array_3_130[6]=new ListBoxItem("360425","江西省永修县","");
array_3_130[7]=new ListBoxItem("360426","江西省德安县","");
array_3_130[8]=new ListBoxItem("360427","江西省星子县","");
array_3_130[9]=new ListBoxItem("360428","江西省都昌县","");
array_3_130[10]=new ListBoxItem("360429","江西省湖口县","");
array_3_130[11]=new ListBoxItem("360430","江西省彭泽县","");
array_3_130[12]=new ListBoxItem("360481","江西省瑞昌市","");
map.put(new Entry("360400",array_3_130));

var array_3_131=new Array();
array_3_131[0]=new ListBoxItem("360501","江西省新余市市辖区","");
array_3_131[1]=new ListBoxItem("360502","江西省新余市渝水区","");
array_3_131[2]=new ListBoxItem("360521","江西省分宜县","");
map.put(new Entry("360500",array_3_131));

var array_3_132=new Array();
array_3_132[0]=new ListBoxItem("360601","江西省鹰潭市市辖区","");
array_3_132[1]=new ListBoxItem("360602","江西省鹰潭市月湖区","");
array_3_132[2]=new ListBoxItem("360622","江西省余江县","");
array_3_132[3]=new ListBoxItem("360681","江西省贵溪市","");
map.put(new Entry("360600",array_3_132));

var array_3_133=new Array();
array_3_133[0]=new ListBoxItem("360701","江西省赣州市市辖区","");
array_3_133[1]=new ListBoxItem("360702","江西省赣州市章贡区","");
array_3_133[2]=new ListBoxItem("360721","江西省赣县","");
array_3_133[3]=new ListBoxItem("360722","江西省信丰县","");
array_3_133[4]=new ListBoxItem("360723","江西省大余县","");
array_3_133[5]=new ListBoxItem("360724","江西省上犹县","");
array_3_133[6]=new ListBoxItem("360725","江西省崇义县","");
array_3_133[7]=new ListBoxItem("360726","江西省安远县","");
array_3_133[8]=new ListBoxItem("360727","江西省龙南县","");
array_3_133[9]=new ListBoxItem("360728","江西省定南县","");
array_3_133[10]=new ListBoxItem("360729","江西省全南县","");
array_3_133[11]=new ListBoxItem("360730","江西省宁都县","");
array_3_133[12]=new ListBoxItem("360731","江西省于都县","");
array_3_133[13]=new ListBoxItem("360732","江西省兴国县","");
array_3_133[14]=new ListBoxItem("360733","江西省会昌县","");
array_3_133[15]=new ListBoxItem("360734","江西省寻乌县","");
array_3_133[16]=new ListBoxItem("360735","江西省石城县","");
array_3_133[17]=new ListBoxItem("360781","江西省瑞金市","");
array_3_133[18]=new ListBoxItem("360782","江西省南康市","");
map.put(new Entry("360700",array_3_133));

var array_3_134=new Array();
array_3_134[0]=new ListBoxItem("360801","江西省吉安市市辖区","");
array_3_134[1]=new ListBoxItem("360802","江西省吉安市吉州区","");
array_3_134[2]=new ListBoxItem("360803","江西省吉安市青原区","");
array_3_134[3]=new ListBoxItem("360821","江西省吉安县","");
array_3_134[4]=new ListBoxItem("360822","江西省吉水县","");
array_3_134[5]=new ListBoxItem("360823","江西省峡江县","");
array_3_134[6]=new ListBoxItem("360824","江西省新干县","");
array_3_134[7]=new ListBoxItem("360825","江西省永丰县","");
array_3_134[8]=new ListBoxItem("360826","江西省泰和县","");
array_3_134[9]=new ListBoxItem("360827","江西省遂川县","");
array_3_134[10]=new ListBoxItem("360828","江西省万安县","");
array_3_134[11]=new ListBoxItem("360829","江西省安福县","");
array_3_134[12]=new ListBoxItem("360830","江西省永新县","");
array_3_134[13]=new ListBoxItem("360881","江西省井冈山市","");
map.put(new Entry("360800",array_3_134));

var array_3_135=new Array();
array_3_135[0]=new ListBoxItem("360901","江西省宜春市市辖区","");
array_3_135[1]=new ListBoxItem("360902","江西省宜春市袁州区","");
array_3_135[2]=new ListBoxItem("360921","江西省奉新县","");
array_3_135[3]=new ListBoxItem("360922","江西省万载县","");
array_3_135[4]=new ListBoxItem("360923","江西省上高县","");
array_3_135[5]=new ListBoxItem("360924","江西省宜丰县","");
array_3_135[6]=new ListBoxItem("360925","江西省靖安县","");
array_3_135[7]=new ListBoxItem("360926","江西省铜鼓县","");
array_3_135[8]=new ListBoxItem("360981","江西省丰城市","");
array_3_135[9]=new ListBoxItem("360982","江西省樟树市","");
array_3_135[10]=new ListBoxItem("360983","江西省高安市","");
map.put(new Entry("360900",array_3_135));

var array_3_136=new Array();
array_3_136[0]=new ListBoxItem("361001","江西省抚州市市辖区","");
array_3_136[1]=new ListBoxItem("361002","江西省抚州市临川区","");
array_3_136[2]=new ListBoxItem("361021","江西省南城县","");
array_3_136[3]=new ListBoxItem("361022","江西省黎川县","");
array_3_136[4]=new ListBoxItem("361023","江西省南丰县","");
array_3_136[5]=new ListBoxItem("361024","江西省崇仁县","");
array_3_136[6]=new ListBoxItem("361025","江西省乐安县","");
array_3_136[7]=new ListBoxItem("361026","江西省宜黄县","");
array_3_136[8]=new ListBoxItem("361027","江西省金溪县","");
array_3_136[9]=new ListBoxItem("361028","江西省资溪县","");
array_3_136[10]=new ListBoxItem("361029","江西省东乡县","");
array_3_136[11]=new ListBoxItem("361030","江西省广昌县","");
map.put(new Entry("361000",array_3_136));

var array_3_137=new Array();
array_3_137[0]=new ListBoxItem("361101","江西省上饶市市辖区","");
array_3_137[1]=new ListBoxItem("361102","江西省上饶市信州区","");
array_3_137[2]=new ListBoxItem("361121","江西省上饶县","");
array_3_137[3]=new ListBoxItem("361122","江西省广丰县","");
array_3_137[4]=new ListBoxItem("361123","江西省玉山县","");
array_3_137[5]=new ListBoxItem("361124","江西省铅山县","");
array_3_137[6]=new ListBoxItem("361125","江西省横峰县","");
array_3_137[7]=new ListBoxItem("361126","江西省弋阳县","");
array_3_137[8]=new ListBoxItem("361127","江西省余干县","");
array_3_137[9]=new ListBoxItem("361128","江西省鄱阳县","");
array_3_137[10]=new ListBoxItem("361129","江西省万年县","");
array_3_137[11]=new ListBoxItem("361130","江西省婺源县","");
array_3_137[12]=new ListBoxItem("361181","江西省德兴市","");
map.put(new Entry("361100",array_3_137));

var array_3_138=new Array();
array_3_138[0]=new ListBoxItem("370101","山东省济南市市辖区","");
array_3_138[1]=new ListBoxItem("370102","山东省济南市历下区","");
array_3_138[2]=new ListBoxItem("370103","山东省济南市市中区","");
array_3_138[3]=new ListBoxItem("370104","山东省济南市槐荫区","");
array_3_138[4]=new ListBoxItem("370105","山东省济南市天桥区","");
array_3_138[5]=new ListBoxItem("370112","山东省济南市历城区","");
array_3_138[6]=new ListBoxItem("370113","山东省济南市长清区","");
array_3_138[7]=new ListBoxItem("370124","山东省平阴县","");
array_3_138[8]=new ListBoxItem("370125","山东省济阳县","");
array_3_138[9]=new ListBoxItem("370126","山东省商河县","");
array_3_138[10]=new ListBoxItem("370181","山东省章丘市","");
map.put(new Entry("370100",array_3_138));

var array_3_139=new Array();
array_3_139[0]=new ListBoxItem("370201","山东省青岛市市辖区","");
array_3_139[1]=new ListBoxItem("370202","山东省青岛市市南区","");
array_3_139[2]=new ListBoxItem("370203","山东省青岛市市北区","");
array_3_139[3]=new ListBoxItem("370205","山东省青岛市四方区","");
array_3_139[4]=new ListBoxItem("370211","山东省青岛市黄岛区","");
array_3_139[5]=new ListBoxItem("370212","山东省青岛市崂山区","");
array_3_139[6]=new ListBoxItem("370213","山东省青岛市李沧区","");
array_3_139[7]=new ListBoxItem("370214","山东省青岛市城阳区","");
array_3_139[8]=new ListBoxItem("370281","山东省胶州市","");
array_3_139[9]=new ListBoxItem("370282","山东省即墨市","");
array_3_139[10]=new ListBoxItem("370283","山东省平度市","");
array_3_139[11]=new ListBoxItem("370284","山东省胶南市","");
array_3_139[12]=new ListBoxItem("370285","山东省莱西市","");
map.put(new Entry("370200",array_3_139));

var array_3_140=new Array();
array_3_140[0]=new ListBoxItem("370301","山东省淄博市市辖区","");
array_3_140[1]=new ListBoxItem("370302","山东省淄博市淄川区","");
array_3_140[2]=new ListBoxItem("370303","山东省淄博市张店区","");
array_3_140[3]=new ListBoxItem("370304","山东省淄博市博山区","");
array_3_140[4]=new ListBoxItem("370305","山东省淄博市临淄区","");
array_3_140[5]=new ListBoxItem("370306","山东省淄博市周村区","");
array_3_140[6]=new ListBoxItem("370321","山东省桓台县","");
array_3_140[7]=new ListBoxItem("370322","山东省高青县","");
array_3_140[8]=new ListBoxItem("370323","山东省沂源县","");
map.put(new Entry("370300",array_3_140));

var array_3_141=new Array();
array_3_141[0]=new ListBoxItem("370401","山东省枣庄市市辖区","");
array_3_141[1]=new ListBoxItem("370402","山东省枣庄市市中区","");
array_3_141[2]=new ListBoxItem("370403","山东省枣庄市薛城区","");
array_3_141[3]=new ListBoxItem("370404","山东省枣庄市峄城区","");
array_3_141[4]=new ListBoxItem("370405","山东省枣庄市台儿庄区","");
array_3_141[5]=new ListBoxItem("370406","山东省枣庄市山亭区","");
array_3_141[6]=new ListBoxItem("370481","山东省滕州市","");
map.put(new Entry("370400",array_3_141));

var array_3_142=new Array();
array_3_142[0]=new ListBoxItem("370501","山东省东营市市辖区","");
array_3_142[1]=new ListBoxItem("370502","山东省东营市东营区","");
array_3_142[2]=new ListBoxItem("370503","山东省东营市河口区","");
array_3_142[3]=new ListBoxItem("370521","山东省垦利县","");
array_3_142[4]=new ListBoxItem("370522","山东省利津县","");
array_3_142[5]=new ListBoxItem("370523","山东省广饶县","");
map.put(new Entry("370500",array_3_142));

var array_3_143=new Array();
array_3_143[0]=new ListBoxItem("370601","山东省烟台市市辖区","");
array_3_143[1]=new ListBoxItem("370602","山东省烟台市芝罘区","");
array_3_143[2]=new ListBoxItem("370611","山东省烟台市福山区","");
array_3_143[3]=new ListBoxItem("370612","山东省烟台市牟平区","");
array_3_143[4]=new ListBoxItem("370613","山东省烟台市莱山区","");
array_3_143[5]=new ListBoxItem("370634","山东省长岛县","");
array_3_143[6]=new ListBoxItem("370681","山东省龙口市","");
array_3_143[7]=new ListBoxItem("370682","山东省莱阳市","");
array_3_143[8]=new ListBoxItem("370683","山东省莱州市","");
array_3_143[9]=new ListBoxItem("370684","山东省蓬莱市","");
array_3_143[10]=new ListBoxItem("370685","山东省招远市","");
array_3_143[11]=new ListBoxItem("370686","山东省栖霞市","");
array_3_143[12]=new ListBoxItem("370687","山东省海阳市","");
map.put(new Entry("370600",array_3_143));

var array_3_144=new Array();
array_3_144[0]=new ListBoxItem("370701","山东省潍坊市市辖区","");
array_3_144[1]=new ListBoxItem("370702","山东省潍坊市潍城区","");
array_3_144[2]=new ListBoxItem("370703","山东省潍坊市寒亭区","");
array_3_144[3]=new ListBoxItem("370704","山东省潍坊市坊子区","");
array_3_144[4]=new ListBoxItem("370705","山东省潍坊市奎文区","");
array_3_144[5]=new ListBoxItem("370724","山东省临朐县","");
array_3_144[6]=new ListBoxItem("370725","山东省昌乐县","");
array_3_144[7]=new ListBoxItem("370781","山东省青州市","");
array_3_144[8]=new ListBoxItem("370782","山东省诸城市","");
array_3_144[9]=new ListBoxItem("370783","山东省寿光市","");
array_3_144[10]=new ListBoxItem("370784","山东省安丘市","");
array_3_144[11]=new ListBoxItem("370785","山东省高密市","");
array_3_144[12]=new ListBoxItem("370786","山东省昌邑市","");
map.put(new Entry("370700",array_3_144));

var array_3_145=new Array();
array_3_145[0]=new ListBoxItem("370801","山东省济宁市市辖区","");
array_3_145[1]=new ListBoxItem("370802","山东省济宁市市中区","");
array_3_145[2]=new ListBoxItem("370811","山东省济宁市任城区","");
array_3_145[3]=new ListBoxItem("370826","山东省微山县","");
array_3_145[4]=new ListBoxItem("370827","山东省鱼台县","");
array_3_145[5]=new ListBoxItem("370828","山东省金乡县","");
array_3_145[6]=new ListBoxItem("370829","山东省嘉祥县","");
array_3_145[7]=new ListBoxItem("370830","山东省汶上县","");
array_3_145[8]=new ListBoxItem("370831","山东省泗水县","");
array_3_145[9]=new ListBoxItem("370832","山东省梁山县","");
array_3_145[10]=new ListBoxItem("370881","山东省曲阜市","");
array_3_145[11]=new ListBoxItem("370882","山东省兖州市","");
array_3_145[12]=new ListBoxItem("370883","山东省邹城市","");
map.put(new Entry("370800",array_3_145));

var array_3_146=new Array();
array_3_146[0]=new ListBoxItem("370901","山东省泰安市市辖区","");
array_3_146[1]=new ListBoxItem("370902","山东省泰安市泰山区","");
array_3_146[2]=new ListBoxItem("370903","山东省泰安市岱岳区","");
array_3_146[3]=new ListBoxItem("370921","山东省宁阳县","");
array_3_146[4]=new ListBoxItem("370923","山东省东平县","");
array_3_146[5]=new ListBoxItem("370982","山东省新泰市","");
array_3_146[6]=new ListBoxItem("370983","山东省肥城市","");
map.put(new Entry("370900",array_3_146));

var array_3_147=new Array();
array_3_147[0]=new ListBoxItem("371001","山东省威海市市辖区","");
array_3_147[1]=new ListBoxItem("371002","山东省威海市环翠区","");
array_3_147[2]=new ListBoxItem("371081","山东省文登市","");
array_3_147[3]=new ListBoxItem("371082","山东省荣成市","");
array_3_147[4]=new ListBoxItem("371083","山东省乳山市","");
map.put(new Entry("371000",array_3_147));

var array_3_148=new Array();
array_3_148[0]=new ListBoxItem("371101","山东省日照市市辖区","");
array_3_148[1]=new ListBoxItem("371102","山东省日照市东港区","");
array_3_148[2]=new ListBoxItem("371121","山东省五莲县","");
array_3_148[3]=new ListBoxItem("371122","山东省莒县","");
map.put(new Entry("371100",array_3_148));

var array_3_149=new Array();
array_3_149[0]=new ListBoxItem("371201","山东省莱芜市市辖区","");
array_3_149[1]=new ListBoxItem("371202","山东省莱芜市莱城区","");
array_3_149[2]=new ListBoxItem("371203","山东省莱芜市钢城区","");
map.put(new Entry("371200",array_3_149));

var array_3_150=new Array();
array_3_150[0]=new ListBoxItem("371301","山东省临沂市市辖区","");
array_3_150[1]=new ListBoxItem("371302","山东省临沂市兰山区","");
array_3_150[2]=new ListBoxItem("371311","山东省临沂市罗庄区","");
array_3_150[3]=new ListBoxItem("371312","山东省临沂市河东区","");
array_3_150[4]=new ListBoxItem("371321","山东省沂南县","");
array_3_150[5]=new ListBoxItem("371322","山东省郯城县","");
array_3_150[6]=new ListBoxItem("371323","山东省沂水县","");
array_3_150[7]=new ListBoxItem("371324","山东省苍山县","");
array_3_150[8]=new ListBoxItem("371325","山东省费县","");
array_3_150[9]=new ListBoxItem("371326","山东省平邑县","");
array_3_150[10]=new ListBoxItem("371327","山东省莒南县","");
array_3_150[11]=new ListBoxItem("371328","山东省蒙阴县","");
array_3_150[12]=new ListBoxItem("371329","山东省临沭县","");
map.put(new Entry("371300",array_3_150));

var array_3_151=new Array();
array_3_151[0]=new ListBoxItem("371401","山东省德州市市辖区","");
array_3_151[1]=new ListBoxItem("371402","山东省德州市德城区","");
array_3_151[2]=new ListBoxItem("371421","山东省陵县","");
array_3_151[3]=new ListBoxItem("371422","山东省宁津县","");
array_3_151[4]=new ListBoxItem("371423","山东省庆云县","");
array_3_151[5]=new ListBoxItem("371424","山东省临邑县","");
array_3_151[6]=new ListBoxItem("371425","山东省齐河县","");
array_3_151[7]=new ListBoxItem("371426","山东省平原县","");
array_3_151[8]=new ListBoxItem("371427","山东省夏津县","");
array_3_151[9]=new ListBoxItem("371428","山东省武城县","");
array_3_151[10]=new ListBoxItem("371481","山东省乐陵市","");
array_3_151[11]=new ListBoxItem("371482","山东省禹城市","");
map.put(new Entry("371400",array_3_151));

var array_3_152=new Array();
array_3_152[0]=new ListBoxItem("371501","山东省聊城市市辖区","");
array_3_152[1]=new ListBoxItem("371502","山东省聊城市东昌府区","");
array_3_152[2]=new ListBoxItem("371521","山东省阳谷县","");
array_3_152[3]=new ListBoxItem("371522","山东省莘县","");
array_3_152[4]=new ListBoxItem("371523","山东省茌平县","");
array_3_152[5]=new ListBoxItem("371524","山东省东阿县","");
array_3_152[6]=new ListBoxItem("371525","山东省冠县","");
array_3_152[7]=new ListBoxItem("371526","山东省高唐县","");
array_3_152[8]=new ListBoxItem("371581","山东省临清市","");
map.put(new Entry("371500",array_3_152));

var array_3_153=new Array();
array_3_153[0]=new ListBoxItem("371601","山东省滨州市市辖区","");
array_3_153[1]=new ListBoxItem("371602","山东省滨州市滨城区","");
array_3_153[2]=new ListBoxItem("371621","山东省惠民县","");
array_3_153[3]=new ListBoxItem("371622","山东省阳信县","");
array_3_153[4]=new ListBoxItem("371623","山东省无棣县","");
array_3_153[5]=new ListBoxItem("371624","山东省沾化县","");
array_3_153[6]=new ListBoxItem("371625","山东省博兴县","");
array_3_153[7]=new ListBoxItem("371626","山东省邹平县","");
map.put(new Entry("371600",array_3_153));

var array_3_154=new Array();
array_3_154[0]=new ListBoxItem("371701","山东省荷泽市市辖区","");
array_3_154[1]=new ListBoxItem("371702","山东省荷泽市牡丹区","");
array_3_154[2]=new ListBoxItem("371721","山东省曹县","");
array_3_154[3]=new ListBoxItem("371722","山东省单县","");
array_3_154[4]=new ListBoxItem("371723","山东省成武县","");
array_3_154[5]=new ListBoxItem("371724","山东省巨野县","");
array_3_154[6]=new ListBoxItem("371725","山东省郓城县","");
array_3_154[7]=new ListBoxItem("371726","山东省鄄城县","");
array_3_154[8]=new ListBoxItem("371727","山东省定陶县","");
array_3_154[9]=new ListBoxItem("371728","山东省东明县","");
map.put(new Entry("371700",array_3_154));

var array_3_155=new Array();
array_3_155[0]=new ListBoxItem("410101","河南省郑州市市辖区","");
array_3_155[1]=new ListBoxItem("410102","河南省郑州市中原区","");
array_3_155[2]=new ListBoxItem("410103","河南省郑州市二七区","");
array_3_155[3]=new ListBoxItem("410104","河南省郑州市管城回族区","");
array_3_155[4]=new ListBoxItem("410105","河南省郑州市金水区","");
array_3_155[5]=new ListBoxItem("410106","河南省郑州市上街区","");
array_3_155[6]=new ListBoxItem("410108","河南省郑州市邙山区","");
array_3_155[7]=new ListBoxItem("410122","河南省中牟县","");
array_3_155[8]=new ListBoxItem("410181","河南省巩义市","");
array_3_155[9]=new ListBoxItem("410182","河南省荥阳市","");
array_3_155[10]=new ListBoxItem("410183","河南省新密市","");
array_3_155[11]=new ListBoxItem("410184","河南省新郑市","");
array_3_155[12]=new ListBoxItem("410185","河南省登封市","");
map.put(new Entry("410100",array_3_155));

var array_3_156=new Array();
array_3_156[0]=new ListBoxItem("410201","河南省开封市市辖区","");
array_3_156[1]=new ListBoxItem("410202","河南省开封市龙亭区","");
array_3_156[2]=new ListBoxItem("410203","河南省开封市顺河回族区","");
array_3_156[3]=new ListBoxItem("410204","河南省开封市鼓楼区","");
array_3_156[4]=new ListBoxItem("410205","河南省开封市南关区","");
array_3_156[5]=new ListBoxItem("410211","河南省开封市郊区","");
array_3_156[6]=new ListBoxItem("410221","河南省杞县","");
array_3_156[7]=new ListBoxItem("410222","河南省通许县","");
array_3_156[8]=new ListBoxItem("410223","河南省尉氏县","");
array_3_156[9]=new ListBoxItem("410224","河南省开封县","");
array_3_156[10]=new ListBoxItem("410225","河南省兰考县","");
map.put(new Entry("410200",array_3_156));

var array_3_157=new Array();
array_3_157[0]=new ListBoxItem("410301","河南省洛阳市市辖区","");
array_3_157[1]=new ListBoxItem("410302","河南省洛阳市老城区","");
array_3_157[2]=new ListBoxItem("410303","河南省洛阳市西工区","");
array_3_157[3]=new ListBoxItem("410304","河南省洛阳市廛河回族区","");
array_3_157[4]=new ListBoxItem("410305","河南省洛阳市涧西区","");
array_3_157[5]=new ListBoxItem("410306","河南省洛阳市吉利区","");
array_3_157[6]=new ListBoxItem("410307","河南省洛阳市洛龙区","");
array_3_157[7]=new ListBoxItem("410322","河南省孟津县","");
array_3_157[8]=new ListBoxItem("410323","河南省新安县","");
array_3_157[9]=new ListBoxItem("410324","河南省栾川县","");
array_3_157[10]=new ListBoxItem("410325","河南省嵩县","");
array_3_157[11]=new ListBoxItem("410326","河南省汝阳县","");
array_3_157[12]=new ListBoxItem("410327","河南省宜阳县","");
array_3_157[13]=new ListBoxItem("410328","河南省洛宁县","");
array_3_157[14]=new ListBoxItem("410329","河南省伊川县","");
array_3_157[15]=new ListBoxItem("410381","河南省偃师市","");
map.put(new Entry("410300",array_3_157));

var array_3_158=new Array();
array_3_158[0]=new ListBoxItem("410401","河南省平顶山市市辖区","");
array_3_158[1]=new ListBoxItem("410402","河南省平顶山市新华区","");
array_3_158[2]=new ListBoxItem("410403","河南省平顶山市卫东区","");
array_3_158[3]=new ListBoxItem("410404","河南省平顶山市石龙区","");
array_3_158[4]=new ListBoxItem("410411","河南省平顶山市湛河区","");
array_3_158[5]=new ListBoxItem("410421","河南省宝丰县","");
array_3_158[6]=new ListBoxItem("410422","河南省叶县","");
array_3_158[7]=new ListBoxItem("410423","河南省鲁山县","");
array_3_158[8]=new ListBoxItem("410425","河南省郏县","");
array_3_158[9]=new ListBoxItem("410481","河南省舞钢市","");
array_3_158[10]=new ListBoxItem("410482","河南省汝州市","");
map.put(new Entry("410400",array_3_158));

var array_3_159=new Array();
array_3_159[0]=new ListBoxItem("410501","河南省安阳市市辖区","");
array_3_159[1]=new ListBoxItem("410502","河南省安阳市文峰区","");
array_3_159[2]=new ListBoxItem("410503","河南省安阳市北关区","");
array_3_159[3]=new ListBoxItem("410505","河南省安阳市殷都区","");
array_3_159[4]=new ListBoxItem("410506","河南省安阳市龙安区","");
array_3_159[5]=new ListBoxItem("410522","河南省安阳县","");
array_3_159[6]=new ListBoxItem("410523","河南省汤阴县","");
array_3_159[7]=new ListBoxItem("410526","河南省滑县","");
array_3_159[8]=new ListBoxItem("410527","河南省内黄县","");
array_3_159[9]=new ListBoxItem("410581","河南省林州市","");
map.put(new Entry("410500",array_3_159));

var array_3_160=new Array();
array_3_160[0]=new ListBoxItem("410601","河南省鹤壁市市辖区","");
array_3_160[1]=new ListBoxItem("410602","河南省鹤壁市鹤山区","");
array_3_160[2]=new ListBoxItem("410603","河南省鹤壁市山城区","");
array_3_160[3]=new ListBoxItem("410611","河南省鹤壁市淇滨区","");
array_3_160[4]=new ListBoxItem("410621","河南省浚县","");
array_3_160[5]=new ListBoxItem("410622","河南省淇县","");
map.put(new Entry("410600",array_3_160));

var array_3_161=new Array();
array_3_161[0]=new ListBoxItem("410701","河南省新乡市市辖区","");
array_3_161[1]=new ListBoxItem("410702","河南省新乡市红旗区","");
array_3_161[2]=new ListBoxItem("410703","河南省新乡市卫滨区","");
array_3_161[3]=new ListBoxItem("410704","河南省新乡市凤泉区","");
array_3_161[4]=new ListBoxItem("410711","河南省新乡市牧野区","");
array_3_161[5]=new ListBoxItem("410721","河南省新乡县","");
array_3_161[6]=new ListBoxItem("410724","河南省获嘉县","");
array_3_161[7]=new ListBoxItem("410725","河南省原阳县","");
array_3_161[8]=new ListBoxItem("410726","河南省延津县","");
array_3_161[9]=new ListBoxItem("410727","河南省封丘县","");
array_3_161[10]=new ListBoxItem("410728","河南省长垣县","");
array_3_161[11]=new ListBoxItem("410781","河南省卫辉市","");
array_3_161[12]=new ListBoxItem("410782","河南省辉县市","");
map.put(new Entry("410700",array_3_161));

var array_3_162=new Array();
array_3_162[0]=new ListBoxItem("410801","河南省焦作市市辖区","");
array_3_162[1]=new ListBoxItem("410802","河南省焦作市解放区","");
array_3_162[2]=new ListBoxItem("410803","河南省焦作市中站区","");
array_3_162[3]=new ListBoxItem("410804","河南省焦作市马村区","");
array_3_162[4]=new ListBoxItem("410811","河南省焦作市山阳区","");
array_3_162[5]=new ListBoxItem("410821","河南省修武县","");
array_3_162[6]=new ListBoxItem("410822","河南省博爱县","");
array_3_162[7]=new ListBoxItem("410823","河南省武陟县","");
array_3_162[8]=new ListBoxItem("410825","河南省温县","");
array_3_162[9]=new ListBoxItem("410881","河南省济源市","");
array_3_162[10]=new ListBoxItem("410882","河南省沁阳市","");
array_3_162[11]=new ListBoxItem("410883","河南省孟州市","");
map.put(new Entry("410800",array_3_162));

var array_3_163=new Array();
array_3_163[0]=new ListBoxItem("410901","河南省濮阳市市辖区","");
array_3_163[1]=new ListBoxItem("410902","河南省濮阳市华龙区","");
array_3_163[2]=new ListBoxItem("410922","河南省清丰县","");
array_3_163[3]=new ListBoxItem("410923","河南省南乐县","");
array_3_163[4]=new ListBoxItem("410926","河南省范县","");
array_3_163[5]=new ListBoxItem("410927","河南省台前县","");
array_3_163[6]=new ListBoxItem("410928","河南省濮阳县","");
map.put(new Entry("410900",array_3_163));

var array_3_164=new Array();
array_3_164[0]=new ListBoxItem("411001","河南省许昌市市辖区","");
array_3_164[1]=new ListBoxItem("411002","河南省许昌市魏都区","");
array_3_164[2]=new ListBoxItem("411023","河南省许昌县","");
array_3_164[3]=new ListBoxItem("411024","河南省鄢陵县","");
array_3_164[4]=new ListBoxItem("411025","河南省襄城县","");
array_3_164[5]=new ListBoxItem("411081","河南省禹州市","");
array_3_164[6]=new ListBoxItem("411082","河南省长葛市","");
map.put(new Entry("411000",array_3_164));

var array_3_165=new Array();
array_3_165[0]=new ListBoxItem("411101","河南省漯河市市辖区","");
array_3_165[1]=new ListBoxItem("411102","河南省漯河市源汇区","");
array_3_165[2]=new ListBoxItem("411121","河南省舞阳县","");
array_3_165[3]=new ListBoxItem("411122","河南省临颍县","");
array_3_165[4]=new ListBoxItem("411123","河南省郾城县","");
map.put(new Entry("411100",array_3_165));

var array_3_166=new Array();
array_3_166[0]=new ListBoxItem("411201","河南省三门峡市市辖区","");
array_3_166[1]=new ListBoxItem("411202","河南省三门峡市湖滨区","");
array_3_166[2]=new ListBoxItem("411221","河南省渑池县","");
array_3_166[3]=new ListBoxItem("411222","河南省陕县","");
array_3_166[4]=new ListBoxItem("411224","河南省卢氏县","");
array_3_166[5]=new ListBoxItem("411281","河南省义马市","");
array_3_166[6]=new ListBoxItem("411282","河南省灵宝市","");
map.put(new Entry("411200",array_3_166));

var array_3_167=new Array();
array_3_167[0]=new ListBoxItem("411301","河南省南阳市市辖区","");
array_3_167[1]=new ListBoxItem("411302","河南省南阳市宛城区","");
array_3_167[2]=new ListBoxItem("411303","河南省南阳市卧龙区","");
array_3_167[3]=new ListBoxItem("411321","河南省南召县","");
array_3_167[4]=new ListBoxItem("411322","河南省方城县","");
array_3_167[5]=new ListBoxItem("411323","河南省西峡县","");
array_3_167[6]=new ListBoxItem("411324","河南省镇平县","");
array_3_167[7]=new ListBoxItem("411325","河南省内乡县","");
array_3_167[8]=new ListBoxItem("411326","河南省淅川县","");
array_3_167[9]=new ListBoxItem("411327","河南省社旗县","");
array_3_167[10]=new ListBoxItem("411328","河南省唐河县","");
array_3_167[11]=new ListBoxItem("411329","河南省新野县","");
array_3_167[12]=new ListBoxItem("411330","河南省桐柏县","");
array_3_167[13]=new ListBoxItem("411381","河南省邓州市","");
map.put(new Entry("411300",array_3_167));

var array_3_168=new Array();
array_3_168[0]=new ListBoxItem("411401","河南省商丘市市辖区","");
array_3_168[1]=new ListBoxItem("411402","河南省商丘市梁园区","");
array_3_168[2]=new ListBoxItem("411403","河南省商丘市睢阳区","");
array_3_168[3]=new ListBoxItem("411421","河南省民权县","");
array_3_168[4]=new ListBoxItem("411422","河南省睢县","");
array_3_168[5]=new ListBoxItem("411423","河南省宁陵县","");
array_3_168[6]=new ListBoxItem("411424","河南省柘城县","");
array_3_168[7]=new ListBoxItem("411425","河南省虞城县","");
array_3_168[8]=new ListBoxItem("411426","河南省夏邑县","");
array_3_168[9]=new ListBoxItem("411481","河南省永城市","");
map.put(new Entry("411400",array_3_168));

var array_3_169=new Array();
array_3_169[0]=new ListBoxItem("411501","河南省信阳市市辖区","");
array_3_169[1]=new ListBoxItem("411502","河南省信阳市师河区","");
array_3_169[2]=new ListBoxItem("411503","河南省信阳市平桥区","");
array_3_169[3]=new ListBoxItem("411521","河南省罗山县","");
array_3_169[4]=new ListBoxItem("411522","河南省光山县","");
array_3_169[5]=new ListBoxItem("411523","河南省新县","");
array_3_169[6]=new ListBoxItem("411524","河南省商城县","");
array_3_169[7]=new ListBoxItem("411525","河南省固始县","");
array_3_169[8]=new ListBoxItem("411526","河南省潢川县","");
array_3_169[9]=new ListBoxItem("411527","河南省淮滨县","");
array_3_169[10]=new ListBoxItem("411528","河南省息县","");
map.put(new Entry("411500",array_3_169));

var array_3_170=new Array();
array_3_170[0]=new ListBoxItem("411601","河南省周口市市辖区","");
array_3_170[1]=new ListBoxItem("411602","河南省周口市川汇区","");
array_3_170[2]=new ListBoxItem("411621","河南省扶沟县","");
array_3_170[3]=new ListBoxItem("411622","河南省西华县","");
array_3_170[4]=new ListBoxItem("411623","河南省商水县","");
array_3_170[5]=new ListBoxItem("411624","河南省沈丘县","");
array_3_170[6]=new ListBoxItem("411625","河南省郸城县","");
array_3_170[7]=new ListBoxItem("411626","河南省淮阳县","");
array_3_170[8]=new ListBoxItem("411627","河南省太康县","");
array_3_170[9]=new ListBoxItem("411628","河南省鹿邑县","");
array_3_170[10]=new ListBoxItem("411681","河南省项城市","");
map.put(new Entry("411600",array_3_170));

var array_3_171=new Array();
array_3_171[0]=new ListBoxItem("411701","河南省驻马店市市辖区","");
array_3_171[1]=new ListBoxItem("411702","河南省驻马店市驿城区","");
array_3_171[2]=new ListBoxItem("411721","河南省西平县","");
array_3_171[3]=new ListBoxItem("411722","河南省上蔡县","");
array_3_171[4]=new ListBoxItem("411723","河南省平舆县","");
array_3_171[5]=new ListBoxItem("411724","河南省正阳县","");
array_3_171[6]=new ListBoxItem("411725","河南省确山县","");
array_3_171[7]=new ListBoxItem("411726","河南省泌阳县","");
array_3_171[8]=new ListBoxItem("411727","河南省汝南县","");
array_3_171[9]=new ListBoxItem("411728","河南省遂平县","");
array_3_171[10]=new ListBoxItem("411729","河南省新蔡县","");
map.put(new Entry("411700",array_3_171));

var array_3_172=new Array();
array_3_172[0]=new ListBoxItem("420101","湖北省武汉市市辖区","");
array_3_172[1]=new ListBoxItem("420102","湖北省武汉市江岸区","");
array_3_172[2]=new ListBoxItem("420103","湖北省武汉市江汉区","");
array_3_172[3]=new ListBoxItem("420104","湖北省武汉市乔口区","");
array_3_172[4]=new ListBoxItem("420105","湖北省武汉市汉阳区","");
array_3_172[5]=new ListBoxItem("420106","湖北省武汉市武昌区","");
array_3_172[6]=new ListBoxItem("420107","湖北省武汉市青山区","");
array_3_172[7]=new ListBoxItem("420111","湖北省武汉市洪山区","");
array_3_172[8]=new ListBoxItem("420112","湖北省武汉市东西湖区","");
array_3_172[9]=new ListBoxItem("420113","湖北省武汉市汉南区","");
array_3_172[10]=new ListBoxItem("420114","湖北省武汉市蔡甸区","");
array_3_172[11]=new ListBoxItem("420115","湖北省武汉市江夏区","");
array_3_172[12]=new ListBoxItem("420116","湖北省武汉市黄陂区","");
array_3_172[13]=new ListBoxItem("420117","湖北省武汉市新洲区","");
map.put(new Entry("420100",array_3_172));

var array_3_173=new Array();
array_3_173[0]=new ListBoxItem("420201","湖北省黄石市市辖区","");
array_3_173[1]=new ListBoxItem("420202","湖北省黄石市黄石港区","");
array_3_173[2]=new ListBoxItem("420203","湖北省黄石市西塞山区","");
array_3_173[3]=new ListBoxItem("420204","湖北省黄石市下陆区","");
array_3_173[4]=new ListBoxItem("420205","湖北省黄石市铁山区","");
array_3_173[5]=new ListBoxItem("420222","湖北省阳新县","");
array_3_173[6]=new ListBoxItem("420281","湖北省大冶市","");
map.put(new Entry("420200",array_3_173));

var array_3_174=new Array();
array_3_174[0]=new ListBoxItem("420301","湖北省十堰市市辖区","");
array_3_174[1]=new ListBoxItem("420302","湖北省十堰市茅箭区","");
array_3_174[2]=new ListBoxItem("420303","湖北省十堰市张湾区","");
array_3_174[3]=new ListBoxItem("420321","湖北省郧县","");
array_3_174[4]=new ListBoxItem("420322","湖北省郧西县","");
array_3_174[5]=new ListBoxItem("420323","湖北省竹山县","");
array_3_174[6]=new ListBoxItem("420324","湖北省竹溪县","");
array_3_174[7]=new ListBoxItem("420325","湖北省房县","");
array_3_174[8]=new ListBoxItem("420381","湖北省丹江口市","");
map.put(new Entry("420300",array_3_174));

var array_3_175=new Array();
array_3_175[0]=new ListBoxItem("420501","湖北省宜昌市市辖区","");
array_3_175[1]=new ListBoxItem("420502","湖北省宜昌市西陵区","");
array_3_175[2]=new ListBoxItem("420503","湖北省宜昌市伍家岗区","");
array_3_175[3]=new ListBoxItem("420504","湖北省宜昌市点军区","");
array_3_175[4]=new ListBoxItem("420505","湖北省宜昌市虎亭区","");
array_3_175[5]=new ListBoxItem("420506","湖北省宜昌市夷陵区","");
array_3_175[6]=new ListBoxItem("420525","湖北省远安县","");
array_3_175[7]=new ListBoxItem("420526","湖北省兴山县","");
array_3_175[8]=new ListBoxItem("420527","湖北省秭归县","");
array_3_175[9]=new ListBoxItem("420528","湖北省长阳土家族自治县","");
array_3_175[10]=new ListBoxItem("420529","湖北省五峰土家族自治县","");
array_3_175[11]=new ListBoxItem("420581","湖北省宜都市","");
array_3_175[12]=new ListBoxItem("420582","湖北省当阳市","");
array_3_175[13]=new ListBoxItem("420583","湖北省枝江市","");
map.put(new Entry("420500",array_3_175));

var array_3_176=new Array();
array_3_176[0]=new ListBoxItem("420601","湖北省襄樊市市辖区","");
array_3_176[1]=new ListBoxItem("420602","湖北省襄樊市襄城区","");
array_3_176[2]=new ListBoxItem("420606","湖北省襄樊市樊城区","");
array_3_176[3]=new ListBoxItem("420607","湖北省襄樊市襄阳区","");
array_3_176[4]=new ListBoxItem("420624","湖北省南漳县","");
array_3_176[5]=new ListBoxItem("420625","湖北省谷城县","");
array_3_176[6]=new ListBoxItem("420626","湖北省保康县","");
array_3_176[7]=new ListBoxItem("420682","湖北省老河口市","");
array_3_176[8]=new ListBoxItem("420683","湖北省枣阳市","");
array_3_176[9]=new ListBoxItem("420684","湖北省宜城市","");
map.put(new Entry("420600",array_3_176));

var array_3_177=new Array();
array_3_177[0]=new ListBoxItem("420701","湖北省鄂州市市辖区","");
array_3_177[1]=new ListBoxItem("420702","湖北省鄂州市梁子湖区","");
array_3_177[2]=new ListBoxItem("420703","湖北省鄂州市华容区","");
array_3_177[3]=new ListBoxItem("420704","湖北省鄂州市鄂城区","");
map.put(new Entry("420700",array_3_177));

var array_3_178=new Array();
array_3_178[0]=new ListBoxItem("420801","湖北省荆门市市辖区","");
array_3_178[1]=new ListBoxItem("420802","湖北省荆门市东宝区","");
array_3_178[2]=new ListBoxItem("420804","湖北省荆门市掇刀区","");
array_3_178[3]=new ListBoxItem("420821","湖北省京山县","");
array_3_178[4]=new ListBoxItem("420822","湖北省沙洋县","");
array_3_178[5]=new ListBoxItem("420881","湖北省钟祥市","");
map.put(new Entry("420800",array_3_178));

var array_3_179=new Array();
array_3_179[0]=new ListBoxItem("420901","湖北省孝感市市辖区","");
array_3_179[1]=new ListBoxItem("420902","湖北省孝感市孝南区","");
array_3_179[2]=new ListBoxItem("420921","湖北省孝昌县","");
array_3_179[3]=new ListBoxItem("420922","湖北省大悟县","");
array_3_179[4]=new ListBoxItem("420923","湖北省云梦县","");
array_3_179[5]=new ListBoxItem("420981","湖北省应城市","");
array_3_179[6]=new ListBoxItem("420982","湖北省安陆市","");
array_3_179[7]=new ListBoxItem("420984","湖北省汉川市","");
map.put(new Entry("420900",array_3_179));

var array_3_180=new Array();
array_3_180[0]=new ListBoxItem("421001","湖北省荆州市市辖区","");
array_3_180[1]=new ListBoxItem("421002","湖北省荆州市沙市区","");
array_3_180[2]=new ListBoxItem("421003","湖北省荆州市荆州区","");
array_3_180[3]=new ListBoxItem("421022","湖北省公安县","");
array_3_180[4]=new ListBoxItem("421023","湖北省监利县","");
array_3_180[5]=new ListBoxItem("421024","湖北省江陵县","");
array_3_180[6]=new ListBoxItem("421081","湖北省石首市","");
array_3_180[7]=new ListBoxItem("421083","湖北省洪湖市","");
array_3_180[8]=new ListBoxItem("421087","湖北省松滋市","");
map.put(new Entry("421000",array_3_180));

var array_3_181=new Array();
array_3_181[0]=new ListBoxItem("421101","湖北省黄冈市市辖区","");
array_3_181[1]=new ListBoxItem("421102","湖北省黄冈市黄州区","");
array_3_181[2]=new ListBoxItem("421121","湖北省团风县","");
array_3_181[3]=new ListBoxItem("421122","湖北省红安县","");
array_3_181[4]=new ListBoxItem("421123","湖北省罗田县","");
array_3_181[5]=new ListBoxItem("421124","湖北省英山县","");
array_3_181[6]=new ListBoxItem("421125","湖北省浠水县","");
array_3_181[7]=new ListBoxItem("421126","湖北省蕲春县","");
array_3_181[8]=new ListBoxItem("421127","湖北省黄梅县","");
array_3_181[9]=new ListBoxItem("421181","湖北省麻城市","");
array_3_181[10]=new ListBoxItem("421182","湖北省武穴市","");
map.put(new Entry("421100",array_3_181));

var array_3_182=new Array();
array_3_182[0]=new ListBoxItem("421201","湖北省咸宁市市辖区","");
array_3_182[1]=new ListBoxItem("421202","湖北省咸宁市咸安区","");
array_3_182[2]=new ListBoxItem("421221","湖北省嘉鱼县","");
array_3_182[3]=new ListBoxItem("421222","湖北省通城县","");
array_3_182[4]=new ListBoxItem("421223","湖北省崇阳县","");
array_3_182[5]=new ListBoxItem("421224","湖北省通山县","");
array_3_182[6]=new ListBoxItem("421281","湖北省赤壁市","");
map.put(new Entry("421200",array_3_182));

var array_3_183=new Array();
array_3_183[0]=new ListBoxItem("421301","湖北省随州市市辖区","");
array_3_183[1]=new ListBoxItem("421302","湖北省随州市曾都区","");
array_3_183[2]=new ListBoxItem("421381","湖北省广水市","");
map.put(new Entry("421300",array_3_183));

var array_3_184=new Array();
array_3_184[0]=new ListBoxItem("422801","湖北省恩施市","");
array_3_184[1]=new ListBoxItem("422802","湖北省利川市","");
array_3_184[2]=new ListBoxItem("422822","湖北省建始县","");
array_3_184[3]=new ListBoxItem("422823","湖北省巴东县","");
array_3_184[4]=new ListBoxItem("422825","湖北省宣恩县","");
array_3_184[5]=new ListBoxItem("422826","湖北省咸丰县","");
array_3_184[6]=new ListBoxItem("422827","湖北省来凤县","");
array_3_184[7]=new ListBoxItem("422828","湖北省鹤峰县","");
map.put(new Entry("422800",array_3_184));

var array_3_185=new Array();
array_3_185[0]=new ListBoxItem("429004","湖北省仙桃市","");
array_3_185[1]=new ListBoxItem("429005","湖北省潜江市","");
array_3_185[2]=new ListBoxItem("429006","湖北省天门市","");
array_3_185[3]=new ListBoxItem("429021","湖北省省直辖行政单位神农架林区","");
map.put(new Entry("429000",array_3_185));

var array_3_186=new Array();
array_3_186[0]=new ListBoxItem("430101","湖南省长沙市市辖区","");
array_3_186[1]=new ListBoxItem("430102","湖南省长沙市芙蓉区","");
array_3_186[2]=new ListBoxItem("430103","湖南省长沙市天心区","");
array_3_186[3]=new ListBoxItem("430104","湖南省长沙市岳麓区","");
array_3_186[4]=new ListBoxItem("430105","湖南省长沙市开福区","");
array_3_186[5]=new ListBoxItem("430111","湖南省长沙市雨花区","");
array_3_186[6]=new ListBoxItem("430121","湖南省长沙县","");
array_3_186[7]=new ListBoxItem("430122","湖南省望城县","");
array_3_186[8]=new ListBoxItem("430124","湖南省宁乡县","");
array_3_186[9]=new ListBoxItem("430181","湖南省浏阳市","");
map.put(new Entry("430100",array_3_186));

var array_3_187=new Array();
array_3_187[0]=new ListBoxItem("430201","湖南省株洲市市辖区","");
array_3_187[1]=new ListBoxItem("430202","湖南省株洲市荷塘区","");
array_3_187[2]=new ListBoxItem("430203","湖南省株洲市芦淞区","");
array_3_187[3]=new ListBoxItem("430204","湖南省株洲市石峰区","");
array_3_187[4]=new ListBoxItem("430211","湖南省株洲市天元区","");
array_3_187[5]=new ListBoxItem("430221","湖南省株洲县","");
array_3_187[6]=new ListBoxItem("430223","湖南省攸县","");
array_3_187[7]=new ListBoxItem("430224","湖南省茶陵县","");
array_3_187[8]=new ListBoxItem("430225","湖南省炎陵县","");
array_3_187[9]=new ListBoxItem("430281","湖南省醴陵市","");
map.put(new Entry("430200",array_3_187));

var array_3_188=new Array();
array_3_188[0]=new ListBoxItem("430301","湖南省湘潭市市辖区","");
array_3_188[1]=new ListBoxItem("430302","湖南省湘潭市雨湖区","");
array_3_188[2]=new ListBoxItem("430304","湖南省湘潭市岳塘区","");
array_3_188[3]=new ListBoxItem("430321","湖南省湘潭县","");
array_3_188[4]=new ListBoxItem("430381","湖南省湘乡市","");
array_3_188[5]=new ListBoxItem("430382","湖南省韶山市","");
map.put(new Entry("430300",array_3_188));

var array_3_189=new Array();
array_3_189[0]=new ListBoxItem("430401","湖南省衡阳市市辖区","");
array_3_189[1]=new ListBoxItem("430405","湖南省衡阳市珠晖区","");
array_3_189[2]=new ListBoxItem("430406","湖南省衡阳市雁峰区","");
array_3_189[3]=new ListBoxItem("430407","湖南省衡阳市石鼓区","");
array_3_189[4]=new ListBoxItem("430408","湖南省衡阳市蒸湘区","");
array_3_189[5]=new ListBoxItem("430412","湖南省衡阳市南岳区","");
array_3_189[6]=new ListBoxItem("430421","湖南省衡阳县","");
array_3_189[7]=new ListBoxItem("430422","湖南省衡南县","");
array_3_189[8]=new ListBoxItem("430423","湖南省衡山县","");
array_3_189[9]=new ListBoxItem("430424","湖南省衡东县","");
array_3_189[10]=new ListBoxItem("430426","湖南省祁东县","");
array_3_189[11]=new ListBoxItem("430481","湖南省耒阳市","");
array_3_189[12]=new ListBoxItem("430482","湖南省常宁市","");
map.put(new Entry("430400",array_3_189));

var array_3_190=new Array();
array_3_190[0]=new ListBoxItem("430501","湖南省邵阳市市辖区","");
array_3_190[1]=new ListBoxItem("430502","湖南省邵阳市双清区","");
array_3_190[2]=new ListBoxItem("430503","湖南省邵阳市大祥区","");
array_3_190[3]=new ListBoxItem("430511","湖南省邵阳市北塔区","");
array_3_190[4]=new ListBoxItem("430521","湖南省邵东县","");
array_3_190[5]=new ListBoxItem("430522","湖南省新邵县","");
array_3_190[6]=new ListBoxItem("430523","湖南省邵阳县","");
array_3_190[7]=new ListBoxItem("430524","湖南省隆回县","");
array_3_190[8]=new ListBoxItem("430525","湖南省洞口县","");
array_3_190[9]=new ListBoxItem("430527","湖南省绥宁县","");
array_3_190[10]=new ListBoxItem("430528","湖南省新宁县","");
array_3_190[11]=new ListBoxItem("430529","湖南省城步苗族自治县","");
array_3_190[12]=new ListBoxItem("430581","湖南省武冈市","");
map.put(new Entry("430500",array_3_190));

var array_3_191=new Array();
array_3_191[0]=new ListBoxItem("430601","湖南省岳阳市市辖区","");
array_3_191[1]=new ListBoxItem("430602","湖南省岳阳市岳阳楼区","");
array_3_191[2]=new ListBoxItem("430603","湖南省岳阳市云溪区","");
array_3_191[3]=new ListBoxItem("430611","湖南省岳阳市君山区","");
array_3_191[4]=new ListBoxItem("430621","湖南省岳阳县","");
array_3_191[5]=new ListBoxItem("430623","湖南省华容县","");
array_3_191[6]=new ListBoxItem("430624","湖南省湘阴县","");
array_3_191[7]=new ListBoxItem("430626","湖南省平江县","");
array_3_191[8]=new ListBoxItem("430681","湖南省汨罗市","");
array_3_191[9]=new ListBoxItem("430682","湖南省临湘市","");
map.put(new Entry("430600",array_3_191));

var array_3_192=new Array();
array_3_192[0]=new ListBoxItem("430701","湖南省常德市市辖区","");
array_3_192[1]=new ListBoxItem("430702","湖南省常德市武陵区","");
array_3_192[2]=new ListBoxItem("430703","湖南省常德市鼎城区","");
array_3_192[3]=new ListBoxItem("430721","湖南省安乡县","");
array_3_192[4]=new ListBoxItem("430722","湖南省汉寿县","");
array_3_192[5]=new ListBoxItem("430723","湖南省澧县","");
array_3_192[6]=new ListBoxItem("430724","湖南省临澧县","");
array_3_192[7]=new ListBoxItem("430725","湖南省桃源县","");
array_3_192[8]=new ListBoxItem("430726","湖南省石门县","");
array_3_192[9]=new ListBoxItem("430781","湖南省津市市","");
map.put(new Entry("430700",array_3_192));

var array_3_193=new Array();
array_3_193[0]=new ListBoxItem("430801","湖南省张家界市市辖区","");
array_3_193[1]=new ListBoxItem("430802","湖南省张家界市永定区","");
array_3_193[2]=new ListBoxItem("430811","湖南省张家界市武陵源区","");
array_3_193[3]=new ListBoxItem("430821","湖南省慈利县","");
array_3_193[4]=new ListBoxItem("430822","湖南省桑植县","");
map.put(new Entry("430800",array_3_193));

var array_3_194=new Array();
array_3_194[0]=new ListBoxItem("430901","湖南省益阳市市辖区","");
array_3_194[1]=new ListBoxItem("430902","湖南省益阳市资阳区","");
array_3_194[2]=new ListBoxItem("430903","湖南省益阳市赫山区","");
array_3_194[3]=new ListBoxItem("430921","湖南省南县","");
array_3_194[4]=new ListBoxItem("430922","湖南省桃江县","");
array_3_194[5]=new ListBoxItem("430923","湖南省安化县","");
array_3_194[6]=new ListBoxItem("430981","湖南省沅江市","");
map.put(new Entry("430900",array_3_194));

var array_3_195=new Array();
array_3_195[0]=new ListBoxItem("431001","湖南省郴州市市辖区","");
array_3_195[1]=new ListBoxItem("431002","湖南省郴州市北湖区","");
array_3_195[2]=new ListBoxItem("431003","湖南省郴州市苏仙区","");
array_3_195[3]=new ListBoxItem("431021","湖南省桂阳县","");
array_3_195[4]=new ListBoxItem("431022","湖南省宜章县","");
array_3_195[5]=new ListBoxItem("431023","湖南省永兴县","");
array_3_195[6]=new ListBoxItem("431024","湖南省嘉禾县","");
array_3_195[7]=new ListBoxItem("431025","湖南省临武县","");
array_3_195[8]=new ListBoxItem("431026","湖南省汝城县","");
array_3_195[9]=new ListBoxItem("431027","湖南省桂东县","");
array_3_195[10]=new ListBoxItem("431028","湖南省安仁县","");
array_3_195[11]=new ListBoxItem("431081","湖南省资兴市","");
map.put(new Entry("431000",array_3_195));

var array_3_196=new Array();
array_3_196[0]=new ListBoxItem("431101","湖南省永州市市辖区","");
array_3_196[1]=new ListBoxItem("431102","湖南省永州市芝山区","");
array_3_196[2]=new ListBoxItem("431103","湖南省永州市冷水滩区","");
array_3_196[3]=new ListBoxItem("431121","湖南省祁阳县","");
array_3_196[4]=new ListBoxItem("431122","湖南省东安县","");
array_3_196[5]=new ListBoxItem("431123","湖南省双牌县","");
array_3_196[6]=new ListBoxItem("431124","湖南省道县","");
array_3_196[7]=new ListBoxItem("431125","湖南省江永县","");
array_3_196[8]=new ListBoxItem("431126","湖南省宁远县","");
array_3_196[9]=new ListBoxItem("431127","湖南省蓝山县","");
array_3_196[10]=new ListBoxItem("431128","湖南省新田县","");
array_3_196[11]=new ListBoxItem("431129","湖南省江华瑶族自治县","");
map.put(new Entry("431100",array_3_196));

var array_3_197=new Array();
array_3_197[0]=new ListBoxItem("431201","湖南省怀化市市辖区","");
array_3_197[1]=new ListBoxItem("431202","湖南省怀化市鹤城区","");
array_3_197[2]=new ListBoxItem("431221","湖南省中方县","");
array_3_197[3]=new ListBoxItem("431222","湖南省沅陵县","");
array_3_197[4]=new ListBoxItem("431223","湖南省辰溪县","");
array_3_197[5]=new ListBoxItem("431224","湖南省溆浦县","");
array_3_197[6]=new ListBoxItem("431225","湖南省会同县","");
array_3_197[7]=new ListBoxItem("431226","湖南省麻阳苗族自治县","");
array_3_197[8]=new ListBoxItem("431227","湖南省新晃侗族自治县","");
array_3_197[9]=new ListBoxItem("431228","湖南省芷江侗族自治县","");
array_3_197[10]=new ListBoxItem("431229","湖南省靖州苗族侗族自治县","");
array_3_197[11]=new ListBoxItem("431230","湖南省通道侗族自治县","");
array_3_197[12]=new ListBoxItem("431281","湖南省洪江市","");
map.put(new Entry("431200",array_3_197));

var array_3_198=new Array();
array_3_198[0]=new ListBoxItem("431301","湖南省娄底市市辖区","");
array_3_198[1]=new ListBoxItem("431302","湖南省娄底市娄星区","");
array_3_198[2]=new ListBoxItem("431321","湖南省双峰县","");
array_3_198[3]=new ListBoxItem("431322","湖南省新化县","");
array_3_198[4]=new ListBoxItem("431381","湖南省冷水江市","");
array_3_198[5]=new ListBoxItem("431382","湖南省涟源市","");
map.put(new Entry("431300",array_3_198));

var array_3_199=new Array();
array_3_199[0]=new ListBoxItem("433101","湖南省吉首市","");
array_3_199[1]=new ListBoxItem("433122","湖南省泸溪县","");
array_3_199[2]=new ListBoxItem("433123","湖南省凤凰县","");
array_3_199[3]=new ListBoxItem("433124","湖南省花垣县","");
array_3_199[4]=new ListBoxItem("433125","湖南省保靖县","");
array_3_199[5]=new ListBoxItem("433126","湖南省古丈县","");
array_3_199[6]=new ListBoxItem("433127","湖南省永顺县","");
array_3_199[7]=new ListBoxItem("433130","湖南省龙山县","");
map.put(new Entry("433100",array_3_199));

var array_3_200=new Array();
array_3_200[0]=new ListBoxItem("440101","广东省广州市","");
array_3_200[1]=new ListBoxItem("440102","广东省广州市越秀区","");
array_3_200[2]=new ListBoxItem("440103","广东省广州市东山区","");
array_3_200[3]=new ListBoxItem("440104","广东省广州市海珠区","");
array_3_200[4]=new ListBoxItem("440105","广东省广州市荔湾区","");
array_3_200[5]=new ListBoxItem("440106","广东省广州市天河区","");
array_3_200[6]=new ListBoxItem("440107","广东省广州市白云区","");
array_3_200[7]=new ListBoxItem("440108","广东省广州市黄埔区","");
array_3_200[8]=new ListBoxItem("440109","广东省广州市芳村区","");
array_3_200[9]=new ListBoxItem("440110","广东省广州市番禺区","");
array_3_200[10]=new ListBoxItem("440111","广东省广州市花都区","");
array_3_200[11]=new ListBoxItem("440121","广东省从化市","");
array_3_200[12]=new ListBoxItem("440122","广东省增城市","");
map.put(new Entry("440100",array_3_200));

var array_3_201=new Array();
array_3_201[0]=new ListBoxItem("440201","广东省深圳市","");
array_3_201[1]=new ListBoxItem("440202","广东省深圳市福田区","");
array_3_201[2]=new ListBoxItem("440203","广东省深圳市罗湖区","");
array_3_201[3]=new ListBoxItem("440204","广东省深圳市盐田区","");
array_3_201[4]=new ListBoxItem("440205","广东省深圳市南山区","");
array_3_201[5]=new ListBoxItem("440206","广东省深圳市宝安区","");
array_3_201[6]=new ListBoxItem("440207","广东省深圳市龙岗区","");
map.put(new Entry("440200",array_3_201));

var array_3_202=new Array();
array_3_202[0]=new ListBoxItem("440301","广东省珠海市","");
array_3_202[1]=new ListBoxItem("440302","广东省珠海市香洲区","");
array_3_202[2]=new ListBoxItem("440303","广东省珠海市金湾区","");
array_3_202[3]=new ListBoxItem("440304","广东省珠海市斗门区","");
map.put(new Entry("440300",array_3_202));

var array_3_203=new Array();
array_3_203[0]=new ListBoxItem("440401","广东省汕头市","");
array_3_203[1]=new ListBoxItem("440402","广东省汕头市金平区","");
array_3_203[2]=new ListBoxItem("440403","广东省汕头市澄海区","");
array_3_203[3]=new ListBoxItem("440404","广东省汕头市龙湖区","");
array_3_203[4]=new ListBoxItem("440405","广东省汕头市濠江区","");
array_3_203[5]=new ListBoxItem("440406","广东省汕头市潮阳区","");
array_3_203[6]=new ListBoxItem("440407","广东省汕头市潮南区","");
array_3_203[7]=new ListBoxItem("440431","广东省南澳县","");
map.put(new Entry("440400",array_3_203));

var array_3_204=new Array();
array_3_204[0]=new ListBoxItem("440501","广东省佛山市","");
array_3_204[1]=new ListBoxItem("440502","广东省佛山市禅城区","");
array_3_204[2]=new ListBoxItem("440503","广东省佛山市南海区","");
array_3_204[3]=new ListBoxItem("440504","广东省佛山市顺德区","");
array_3_204[4]=new ListBoxItem("440505","广东省佛山市高明区","");
array_3_204[5]=new ListBoxItem("440506","广东省佛山市三水区","");
map.put(new Entry("440500",array_3_204));

var array_3_205=new Array();
array_3_205[0]=new ListBoxItem("440601","广东省韶关市","");
array_3_205[1]=new ListBoxItem("440602","广东省韶关市北江区","");
array_3_205[2]=new ListBoxItem("440603","广东省韶关市浈江区","");
array_3_205[3]=new ListBoxItem("440604","广东省韶关市武江区","");
array_3_205[4]=new ListBoxItem("440621","广东省乐昌市","");
array_3_205[5]=new ListBoxItem("440622","广东省南雄市","");
array_3_205[6]=new ListBoxItem("440631","广东省仁化县","");
array_3_205[7]=new ListBoxItem("440632","广东省始兴县","");
array_3_205[8]=new ListBoxItem("440633","广东省翁源县","");
array_3_205[9]=new ListBoxItem("440634","广东省新丰县","");
array_3_205[10]=new ListBoxItem("440635","广东省曲江县","");
array_3_205[11]=new ListBoxItem("440636","广东省乳源瑶族自治县","");
map.put(new Entry("440600",array_3_205));

var array_3_206=new Array();
array_3_206[0]=new ListBoxItem("440701","广东省河源市","");
array_3_206[1]=new ListBoxItem("440702","广东省河源市源城区","");
array_3_206[2]=new ListBoxItem("440731","广东省东源县","");
array_3_206[3]=new ListBoxItem("440732","广东省和平县","");
array_3_206[4]=new ListBoxItem("440733","广东省龙川县","");
array_3_206[5]=new ListBoxItem("440734","广东省紫金县","");
array_3_206[6]=new ListBoxItem("440735","广东省连平县","");
map.put(new Entry("440700",array_3_206));

var array_3_207=new Array();
array_3_207[0]=new ListBoxItem("440801","广东省梅州市","");
array_3_207[1]=new ListBoxItem("440802","广东省梅州市梅江区","");
array_3_207[2]=new ListBoxItem("440821","广东省兴宁市","");
array_3_207[3]=new ListBoxItem("440831","广东省梅县","");
array_3_207[4]=new ListBoxItem("440832","广东省平远县","");
array_3_207[5]=new ListBoxItem("440833","广东省蕉岭县","");
array_3_207[6]=new ListBoxItem("440834","广东省大埔县","");
array_3_207[7]=new ListBoxItem("440835","广东省丰顺县","");
array_3_207[8]=new ListBoxItem("440836","广东省五华县","");
map.put(new Entry("440800",array_3_207));

var array_3_208=new Array();
array_3_208[0]=new ListBoxItem("440901","广东省惠州市","");
array_3_208[1]=new ListBoxItem("440902","广东省惠州市惠城区","");
array_3_208[2]=new ListBoxItem("440903","广东省惠州市惠阳区","");
array_3_208[3]=new ListBoxItem("440931","广东省惠东县","");
array_3_208[4]=new ListBoxItem("440932","广东省博罗县","");
array_3_208[5]=new ListBoxItem("440933","广东省龙门县","");
map.put(new Entry("440900",array_3_208));

var array_3_209=new Array();
array_3_209[0]=new ListBoxItem("441001","广东省汕尾市","");
array_3_209[1]=new ListBoxItem("441002","广东省汕尾市城区","");
array_3_209[2]=new ListBoxItem("441021","广东省陆丰市","");
array_3_209[3]=new ListBoxItem("441031","广东省海丰县","");
array_3_209[4]=new ListBoxItem("441032","广东省陆河县","");
map.put(new Entry("441000",array_3_209));

var array_3_210=new Array();
array_3_210[0]=new ListBoxItem("441101","广东省东莞市","");
map.put(new Entry("441100",array_3_210));

var array_3_211=new Array();
array_3_211[0]=new ListBoxItem("441201","广东省中山市","");
map.put(new Entry("441200",array_3_211));

var array_3_212=new Array();
array_3_212[0]=new ListBoxItem("441301","广东省江门市","");
array_3_212[1]=new ListBoxItem("441302","广东省江门市蓬江区","");
array_3_212[2]=new ListBoxItem("441303","广东省江门市江海区","");
array_3_212[3]=new ListBoxItem("441304","广东省江门市新会区","");
array_3_212[4]=new ListBoxItem("441331","广东省台山市","");
array_3_212[5]=new ListBoxItem("441332","广东省开平市","");
array_3_212[6]=new ListBoxItem("441333","广东省鹤山市","");
array_3_212[7]=new ListBoxItem("441334","广东省恩平市","");
map.put(new Entry("441300",array_3_212));

var array_3_213=new Array();
array_3_213[0]=new ListBoxItem("441401","广东省阳江市","");
array_3_213[1]=new ListBoxItem("441402","广东省阳江市江城区","");
array_3_213[2]=new ListBoxItem("441421","广东省阳春市","");
array_3_213[3]=new ListBoxItem("441431","广东省阳东县","");
array_3_213[4]=new ListBoxItem("441432","广东省阳西县","");
map.put(new Entry("441400",array_3_213));

var array_3_214=new Array();
array_3_214[0]=new ListBoxItem("441501","广东省湛江市","");
array_3_214[1]=new ListBoxItem("441502","广东省湛江市赤坎区","");
array_3_214[2]=new ListBoxItem("441503","广东省湛江市霞山区","");
array_3_214[3]=new ListBoxItem("441504","广东省湛江市麻章区","");
array_3_214[4]=new ListBoxItem("441505","广东省湛江市坡头区","");
array_3_214[5]=new ListBoxItem("441511","广东省湛江市郊区","");
array_3_214[6]=new ListBoxItem("441521","广东省雷州市","");
array_3_214[7]=new ListBoxItem("441522","广东省廉江市","");
array_3_214[8]=new ListBoxItem("441523","广东省吴川市","");
array_3_214[9]=new ListBoxItem("441531","广东省遂溪县","");
array_3_214[10]=new ListBoxItem("441532","广东省徐闻县","");
map.put(new Entry("441500",array_3_214));

var array_3_215=new Array();
array_3_215[0]=new ListBoxItem("441601","广东省茂名市","");
array_3_215[1]=new ListBoxItem("441602","广东省茂名市茂南区","");
array_3_215[2]=new ListBoxItem("441603","广东省茂名市茂港区","");
array_3_215[3]=new ListBoxItem("441621","广东省信宜市","");
array_3_215[4]=new ListBoxItem("441622","广东省高州市","");
array_3_215[5]=new ListBoxItem("441623","广东省化州市","");
array_3_215[6]=new ListBoxItem("441631","广东省电白县","");
map.put(new Entry("441600",array_3_215));

var array_3_216=new Array();
array_3_216[0]=new ListBoxItem("441701","广东省肇庆市","");
array_3_216[1]=new ListBoxItem("441702","广东省肇庆市端州区","");
array_3_216[2]=new ListBoxItem("441703","广东省肇庆市鼎湖区","");
array_3_216[3]=new ListBoxItem("441721","广东省四会市","");
array_3_216[4]=new ListBoxItem("441722","广东省高要市","");
array_3_216[5]=new ListBoxItem("441731","广东省广宁县","");
array_3_216[6]=new ListBoxItem("441732","广东省德庆县","");
array_3_216[7]=new ListBoxItem("441733","广东省封开县","");
array_3_216[8]=new ListBoxItem("441734","广东省怀集县","");
map.put(new Entry("441700",array_3_216));

var array_3_217=new Array();
array_3_217[0]=new ListBoxItem("441801","广东省清远市","");
array_3_217[1]=new ListBoxItem("441802","广东省清远市清城区","");
array_3_217[2]=new ListBoxItem("441821","广东省英德市","");
array_3_217[3]=new ListBoxItem("441822","广东省连州市","");
array_3_217[4]=new ListBoxItem("441831","广东省佛冈县","");
array_3_217[5]=new ListBoxItem("441832","广东省清新县","");
array_3_217[6]=new ListBoxItem("441833","广东省连山壮族瑶族自治县","");
array_3_217[7]=new ListBoxItem("441834","广东省连南瑶族自治县","");
array_3_217[8]=new ListBoxItem("441835","广东省阳山县","");
map.put(new Entry("441800",array_3_217));

var array_3_218=new Array();
array_3_218[0]=new ListBoxItem("441901","广东省潮州市","");
array_3_218[1]=new ListBoxItem("441902","广东省潮州市湘桥区","");
array_3_218[2]=new ListBoxItem("441931","广东省饶平县","");
array_3_218[3]=new ListBoxItem("441932","广东省潮安县","");
map.put(new Entry("441900",array_3_218));

var array_3_219=new Array();
array_3_219[0]=new ListBoxItem("442001","广东省揭阳市","");
array_3_219[1]=new ListBoxItem("442002","广东省揭阳市榕城区","");
array_3_219[2]=new ListBoxItem("442021","广东省普宁市","");
array_3_219[3]=new ListBoxItem("442031","广东省揭东县","");
array_3_219[4]=new ListBoxItem("442032","广东省揭西县","");
array_3_219[5]=new ListBoxItem("442033","广东省惠来县","");
map.put(new Entry("442000",array_3_219));

var array_3_220=new Array();
array_3_220[0]=new ListBoxItem("442201","广东省云浮市","");
array_3_220[1]=new ListBoxItem("442202","广东省云浮市云城区","");
array_3_220[2]=new ListBoxItem("442221","广东省罗定市","");
array_3_220[3]=new ListBoxItem("442231","广东省新兴县","");
array_3_220[4]=new ListBoxItem("442232","广东省郁南县","");
array_3_220[5]=new ListBoxItem("442233","广东省云安县","");
map.put(new Entry("442200",array_3_220));

var array_3_221=new Array();
array_3_221[0]=new ListBoxItem("450101","广西壮族自治区南宁市市辖区","");
array_3_221[1]=new ListBoxItem("450102","广西壮族自治区南宁市兴宁区","");
array_3_221[2]=new ListBoxItem("450103","广西壮族自治区南宁市新城区","");
array_3_221[3]=new ListBoxItem("450104","广西壮族自治区南宁市城北区","");
array_3_221[4]=new ListBoxItem("450105","广西壮族自治区南宁市江南区","");
array_3_221[5]=new ListBoxItem("450106","广西壮族自治区南宁市永新区","");
array_3_221[6]=new ListBoxItem("450121","广西壮族自治区邕宁县","");
array_3_221[7]=new ListBoxItem("450122","广西壮族自治区武鸣县","");
array_3_221[8]=new ListBoxItem("450123","广西壮族自治区隆安县","");
array_3_221[9]=new ListBoxItem("450124","广西壮族自治区马山广西壮族自治区马山县","");
array_3_221[10]=new ListBoxItem("450125","广西壮族自治区上林县","");
array_3_221[11]=new ListBoxItem("450126","广西壮族自治区宾阳县","");
array_3_221[12]=new ListBoxItem("450127","广西壮族自治区横县","");
map.put(new Entry("450100",array_3_221));

var array_3_222=new Array();
array_3_222[0]=new ListBoxItem("450201","广西壮族自治区柳州市市辖区","");
array_3_222[1]=new ListBoxItem("450202","广西壮族自治区柳州市城中区","");
array_3_222[2]=new ListBoxItem("450203","广西壮族自治区柳州市鱼峰区","");
array_3_222[3]=new ListBoxItem("450204","广西壮族自治区柳州市柳南区","");
array_3_222[4]=new ListBoxItem("450205","广西壮族自治区柳州市柳北区","");
array_3_222[5]=new ListBoxItem("450221","广西壮族自治区柳江县","");
array_3_222[6]=new ListBoxItem("450222","广西壮族自治区柳城县","");
array_3_222[7]=new ListBoxItem("450223","广西壮族自治区鹿寨县","");
array_3_222[8]=new ListBoxItem("450224","广西壮族自治区融安县","");
array_3_222[9]=new ListBoxItem("450225","广西壮族自治区融水苗族自治县","");
array_3_222[10]=new ListBoxItem("450226","广西壮族自治区三江侗族自治县","");
map.put(new Entry("450200",array_3_222));

var array_3_223=new Array();
array_3_223[0]=new ListBoxItem("450301","广西壮族自治区桂林市市辖区","");
array_3_223[1]=new ListBoxItem("450302","广西壮族自治区桂林市秀峰区","");
array_3_223[2]=new ListBoxItem("450303","广西壮族自治区桂林市叠彩区","");
array_3_223[3]=new ListBoxItem("450304","广西壮族自治区桂林市象山区","");
array_3_223[4]=new ListBoxItem("450305","广西壮族自治区桂林市七星区","");
array_3_223[5]=new ListBoxItem("450311","广西壮族自治区桂林市雁山区","");
array_3_223[6]=new ListBoxItem("450321","广西壮族自治区阳朔县","");
array_3_223[7]=new ListBoxItem("450322","广西壮族自治区临桂县","");
array_3_223[8]=new ListBoxItem("450323","广西壮族自治区灵川县","");
array_3_223[9]=new ListBoxItem("450324","广西壮族自治区全州县","");
array_3_223[10]=new ListBoxItem("450325","广西壮族自治区兴安县","");
array_3_223[11]=new ListBoxItem("450326","广西壮族自治区永福县","");
array_3_223[12]=new ListBoxItem("450327","广西壮族自治区灌阳县","");
array_3_223[13]=new ListBoxItem("450328","广西壮族自治区龙胜各族自治县","");
array_3_223[14]=new ListBoxItem("450329","广西壮族自治区资源县","");
array_3_223[15]=new ListBoxItem("450330","广西壮族自治区平乐县","");
array_3_223[16]=new ListBoxItem("450331","广西壮族自治区荔蒲县","");
array_3_223[17]=new ListBoxItem("450332","广西壮族自治区恭城瑶族自治县","");
map.put(new Entry("450300",array_3_223));

var array_3_224=new Array();
array_3_224[0]=new ListBoxItem("450401","广西壮族自治区梧州市市辖区","");
array_3_224[1]=new ListBoxItem("450403","广西壮族自治区梧州市万秀区","");
array_3_224[2]=new ListBoxItem("450404","广西壮族自治区梧州市蝶山区","");
array_3_224[3]=new ListBoxItem("450405","广西壮族自治区梧州市长洲区","");
array_3_224[4]=new ListBoxItem("450421","广西壮族自治区苍梧县","");
array_3_224[5]=new ListBoxItem("450422","广西壮族自治区藤县","");
array_3_224[6]=new ListBoxItem("450423","广西壮族自治区蒙山县","");
array_3_224[7]=new ListBoxItem("450481","广西壮族自治区岑溪市","");
map.put(new Entry("450400",array_3_224));

var array_3_225=new Array();
array_3_225[0]=new ListBoxItem("450501","广西壮族自治区北海市市辖区","");
array_3_225[1]=new ListBoxItem("450502","广西壮族自治区北海市海城区","");
array_3_225[2]=new ListBoxItem("450503","广西壮族自治区北海市银海区","");
array_3_225[3]=new ListBoxItem("450512","广西壮族自治区北海市铁山港区","");
array_3_225[4]=new ListBoxItem("450521","广西壮族自治区合浦县","");
map.put(new Entry("450500",array_3_225));

var array_3_226=new Array();
array_3_226[0]=new ListBoxItem("450601","广西壮族自治区防城港市市辖区","");
array_3_226[1]=new ListBoxItem("450602","广西壮族自治区防城港市港口区","");
array_3_226[2]=new ListBoxItem("450603","广西壮族自治区防城港市防城区","");
array_3_226[3]=new ListBoxItem("450621","广西壮族自治区上思县","");
array_3_226[4]=new ListBoxItem("450681","广西壮族自治区东兴市","");
map.put(new Entry("450600",array_3_226));

var array_3_227=new Array();
array_3_227[0]=new ListBoxItem("450701","广西壮族自治区钦州市市辖区","");
array_3_227[1]=new ListBoxItem("450702","广西壮族自治区钦州市钦南区","");
array_3_227[2]=new ListBoxItem("450703","广西壮族自治区钦州市钦北区","");
array_3_227[3]=new ListBoxItem("450721","广西壮族自治区灵山县","");
array_3_227[4]=new ListBoxItem("450722","广西壮族自治区浦北县","");
map.put(new Entry("450700",array_3_227));

var array_3_228=new Array();
array_3_228[0]=new ListBoxItem("450801","广西壮族自治区贵港市市辖区","");
array_3_228[1]=new ListBoxItem("450802","广西壮族自治区贵港市港北区","");
array_3_228[2]=new ListBoxItem("450803","广西壮族自治区贵港市港南区","");
array_3_228[3]=new ListBoxItem("450804","广西壮族自治区贵港市覃塘区","");
array_3_228[4]=new ListBoxItem("450821","广西壮族自治区平南县","");
array_3_228[5]=new ListBoxItem("450881","广西壮族自治区桂平市","");
map.put(new Entry("450800",array_3_228));

var array_3_229=new Array();
array_3_229[0]=new ListBoxItem("450901","广西壮族自治区玉林市市辖区","");
array_3_229[1]=new ListBoxItem("450902","广西壮族自治区玉林市玉州区","");
array_3_229[2]=new ListBoxItem("450921","广西壮族自治区容县","");
array_3_229[3]=new ListBoxItem("450922","广西壮族自治区陆川县","");
array_3_229[4]=new ListBoxItem("450923","广西壮族自治区博白县","");
array_3_229[5]=new ListBoxItem("450924","广西壮族自治区兴业县","");
array_3_229[6]=new ListBoxItem("450981","广西壮族自治区北流市","");
map.put(new Entry("450900",array_3_229));

var array_3_230=new Array();
array_3_230[0]=new ListBoxItem("451001","广西壮族自治区百色市市辖区","");
array_3_230[1]=new ListBoxItem("451002","广西壮族自治区百色市右江区","");
array_3_230[2]=new ListBoxItem("451021","广西壮族自治区田阳县","");
array_3_230[3]=new ListBoxItem("451022","广西壮族自治区田东县","");
array_3_230[4]=new ListBoxItem("451023","广西壮族自治区平果县","");
array_3_230[5]=new ListBoxItem("451024","广西壮族自治区德保县","");
array_3_230[6]=new ListBoxItem("451025","广西壮族自治区靖西县","");
array_3_230[7]=new ListBoxItem("451026","广西壮族自治区那坡县","");
array_3_230[8]=new ListBoxItem("451027","广西壮族自治区凌云县","");
array_3_230[9]=new ListBoxItem("451028","广西壮族自治区乐业县","");
array_3_230[10]=new ListBoxItem("451029","广西壮族自治区田林县","");
array_3_230[11]=new ListBoxItem("451030","广西壮族自治区西林县","");
array_3_230[12]=new ListBoxItem("451031","广西壮族自治区隆林各族自治县","");
map.put(new Entry("451000",array_3_230));

var array_3_231=new Array();
array_3_231[0]=new ListBoxItem("451101","广西壮族自治区贺州市市辖区","");
array_3_231[1]=new ListBoxItem("451102","广西壮族自治区贺州市八步区","");
array_3_231[2]=new ListBoxItem("451121","广西壮族自治区昭平县","");
array_3_231[3]=new ListBoxItem("451122","广西壮族自治区钟山县","");
array_3_231[4]=new ListBoxItem("451123","广西壮族自治区富川瑶族自治县","");
map.put(new Entry("451100",array_3_231));

var array_3_232=new Array();
array_3_232[0]=new ListBoxItem("451201","广西壮族自治区河池市市辖区","");
array_3_232[1]=new ListBoxItem("451202","广西壮族自治区河池市金城江区","");
array_3_232[2]=new ListBoxItem("451221","广西壮族自治区南丹县","");
array_3_232[3]=new ListBoxItem("451222","广西壮族自治区天峨县","");
array_3_232[4]=new ListBoxItem("451223","广西壮族自治区凤山县","");
array_3_232[5]=new ListBoxItem("451224","广西壮族自治区东兰县","");
array_3_232[6]=new ListBoxItem("451225","广西壮族自治区罗城仫佬族自治县","");
array_3_232[7]=new ListBoxItem("451226","广西壮族自治区环江毛南族自治县","");
array_3_232[8]=new ListBoxItem("451227","广西壮族自治区巴马瑶族自治县","");
array_3_232[9]=new ListBoxItem("451228","广西壮族自治区都安瑶族自治县","");
array_3_232[10]=new ListBoxItem("451229","广西壮族自治区大化瑶族自治县","");
array_3_232[11]=new ListBoxItem("451281","广西壮族自治区宜州市","");
map.put(new Entry("451200",array_3_232));

var array_3_233=new Array();
array_3_233[0]=new ListBoxItem("451301","广西壮族自治区来宾市市辖区","");
array_3_233[1]=new ListBoxItem("451302","广西壮族自治区来宾市兴宾区","");
array_3_233[2]=new ListBoxItem("451321","广西壮族自治区忻城县","");
array_3_233[3]=new ListBoxItem("451322","广西壮族自治区象州县","");
array_3_233[4]=new ListBoxItem("451323","广西壮族自治区武宣县","");
array_3_233[5]=new ListBoxItem("451324","广西壮族自治区金秀瑶族自治县","");
array_3_233[6]=new ListBoxItem("451381","广西壮族自治区合山市","");
map.put(new Entry("451300",array_3_233));

var array_3_234=new Array();
array_3_234[0]=new ListBoxItem("451401","广西壮族自治区崇左市市辖区","");
array_3_234[1]=new ListBoxItem("451402","广西壮族自治区崇左市江洲区","");
array_3_234[2]=new ListBoxItem("451421","广西壮族自治区扶绥县","");
array_3_234[3]=new ListBoxItem("451422","广西壮族自治区宁明县","");
array_3_234[4]=new ListBoxItem("451423","广西壮族自治区龙州县","");
array_3_234[5]=new ListBoxItem("451424","广西壮族自治区大新县","");
array_3_234[6]=new ListBoxItem("451425","广西壮族自治区天等县","");
array_3_234[7]=new ListBoxItem("451481","广西壮族自治区凭祥市","");
map.put(new Entry("451400",array_3_234));

var array_3_235=new Array();
array_3_235[0]=new ListBoxItem("460101","海南省海口市市辖区","");
array_3_235[1]=new ListBoxItem("460105","海南省海口市秀英区","");
array_3_235[2]=new ListBoxItem("460106","海南省海口市龙华区","");
array_3_235[3]=new ListBoxItem("460107","海南省海口市琼山区","");
array_3_235[4]=new ListBoxItem("460108","海南省海口市美兰区","");
map.put(new Entry("460100",array_3_235));

var array_3_236=new Array();
array_3_236[0]=new ListBoxItem("460201","海南省三亚市市辖区","");
map.put(new Entry("460200",array_3_236));

var array_3_237=new Array();
array_3_237[0]=new ListBoxItem("469001","海南省五指山市","");
array_3_237[1]=new ListBoxItem("469002","海南省琼海市","");
array_3_237[2]=new ListBoxItem("469003","海南省儋州市","");
array_3_237[3]=new ListBoxItem("469005","海南省文昌市","");
array_3_237[4]=new ListBoxItem("469006","海南省万宁市","");
array_3_237[5]=new ListBoxItem("469007","海南省东方市","");
array_3_237[6]=new ListBoxItem("469025","海南省定安县","");
array_3_237[7]=new ListBoxItem("469026","海南省屯昌县","");
array_3_237[8]=new ListBoxItem("469027","海南省澄迈县","");
array_3_237[9]=new ListBoxItem("469028","海南省临高县","");
array_3_237[10]=new ListBoxItem("469030","海南省白沙黎族自治县","");
array_3_237[11]=new ListBoxItem("469031","海南省昌江黎族自治县","");
array_3_237[12]=new ListBoxItem("469033","海南省乐东黎族自治县","");
array_3_237[13]=new ListBoxItem("469034","海南省陵水黎族自治县","");
array_3_237[14]=new ListBoxItem("469035","海南省保亭黎族苗族自治县","");
array_3_237[15]=new ListBoxItem("469036","海南省琼中黎族苗族自治县","");
array_3_237[16]=new ListBoxItem("469037","海南省西沙群岛","");
array_3_237[17]=new ListBoxItem("469038","海南省南沙群岛","");
array_3_237[18]=new ListBoxItem("469039","海南省中沙群岛的岛礁及其海域","");
map.put(new Entry("469000",array_3_237));

var array_3_238=new Array();
array_3_238[0]=new ListBoxItem("500101","重庆市万州区","");
array_3_238[1]=new ListBoxItem("500102","重庆市涪陵区","");
array_3_238[2]=new ListBoxItem("500103","重庆市渝中区","");
array_3_238[3]=new ListBoxItem("500104","重庆市大渡口区","");
array_3_238[4]=new ListBoxItem("500105","重庆市江北区","");
array_3_238[5]=new ListBoxItem("500106","重庆市沙坪坝区","");
array_3_238[6]=new ListBoxItem("500107","重庆市九龙坡区","");
array_3_238[7]=new ListBoxItem("500108","重庆市南岸区","");
array_3_238[8]=new ListBoxItem("500109","重庆市北碚区","");
array_3_238[9]=new ListBoxItem("500110","重庆市万盛区","");
array_3_238[10]=new ListBoxItem("500111","重庆市双桥区","");
array_3_238[11]=new ListBoxItem("500112","重庆市渝北区","");
array_3_238[12]=new ListBoxItem("500113","重庆市巴南区","");
array_3_238[13]=new ListBoxItem("500114","重庆市黔江区","");
array_3_238[14]=new ListBoxItem("500115","重庆市长寿区","");
map.put(new Entry("500100",array_3_238));

var array_3_239=new Array();
array_3_239[0]=new ListBoxItem("500222","重庆市綦江县","");
array_3_239[1]=new ListBoxItem("500223","重庆市潼南县","");
array_3_239[2]=new ListBoxItem("500224","重庆市铜梁县","");
array_3_239[3]=new ListBoxItem("500225","重庆市大足县","");
array_3_239[4]=new ListBoxItem("500226","重庆市荣昌县","");
array_3_239[5]=new ListBoxItem("500227","重庆市璧山县","");
array_3_239[6]=new ListBoxItem("500228","重庆市梁平县","");
array_3_239[7]=new ListBoxItem("500229","重庆市城口县","");
array_3_239[8]=new ListBoxItem("500230","重庆市丰都县","");
array_3_239[9]=new ListBoxItem("500231","重庆市垫江县","");
array_3_239[10]=new ListBoxItem("500232","重庆市武隆县","");
array_3_239[11]=new ListBoxItem("500233","重庆市忠县","");
array_3_239[12]=new ListBoxItem("500234","重庆市开县","");
array_3_239[13]=new ListBoxItem("500235","重庆市云阳县","");
array_3_239[14]=new ListBoxItem("500236","重庆市奉节县","");
array_3_239[15]=new ListBoxItem("500237","重庆市巫山县","");
array_3_239[16]=new ListBoxItem("500238","重庆市巫溪县","");
array_3_239[17]=new ListBoxItem("500240","重庆市石柱土家族自治县","");
array_3_239[18]=new ListBoxItem("500241","重庆市秀山土家族苗族自治县","");
array_3_239[19]=new ListBoxItem("500242","重庆市酉阳土家族苗族自治县","");
array_3_239[20]=new ListBoxItem("500243","重庆市彭水苗族土家族自治县","");
map.put(new Entry("500200",array_3_239));

var array_3_240=new Array();
array_3_240[0]=new ListBoxItem("500381","重庆市江津市","");
array_3_240[1]=new ListBoxItem("500382","重庆市合川市","");
array_3_240[2]=new ListBoxItem("500383","重庆市永川市","");
array_3_240[3]=new ListBoxItem("500384","重庆市南川市","");
map.put(new Entry("500300",array_3_240));

var array_3_241=new Array();
array_3_241[0]=new ListBoxItem("510101","四川省成都市市辖区","");
array_3_241[1]=new ListBoxItem("510104","四川省成都市锦江区","");
array_3_241[2]=new ListBoxItem("510105","四川省成都市青羊区","");
array_3_241[3]=new ListBoxItem("510106","四川省成都市金牛区","");
array_3_241[4]=new ListBoxItem("510107","四川省成都市武侯区","");
array_3_241[5]=new ListBoxItem("510108","四川省成都市成华区","");
array_3_241[6]=new ListBoxItem("510112","四川省成都市龙泉驿区","");
array_3_241[7]=new ListBoxItem("510113","四川省成都市青白江区","");
array_3_241[8]=new ListBoxItem("510114","四川省成都市新都区","");
array_3_241[9]=new ListBoxItem("510115","四川省成都市温江区","");
array_3_241[10]=new ListBoxItem("510121","四川省金堂县","");
array_3_241[11]=new ListBoxItem("510122","四川省双流县","");
array_3_241[12]=new ListBoxItem("510124","四川省郫县","");
array_3_241[13]=new ListBoxItem("510129","四川省大邑县","");
array_3_241[14]=new ListBoxItem("510131","四川省蒲江县","");
array_3_241[15]=new ListBoxItem("510132","四川省新津县","");
array_3_241[16]=new ListBoxItem("510181","四川省都江堰市","");
array_3_241[17]=new ListBoxItem("510182","四川省彭州市","");
array_3_241[18]=new ListBoxItem("510183","四川省邛崃市","");
array_3_241[19]=new ListBoxItem("510184","四川省崇州市","");
map.put(new Entry("510100",array_3_241));

var array_3_242=new Array();
array_3_242[0]=new ListBoxItem("510301","四川省自贡市市辖区","");
array_3_242[1]=new ListBoxItem("510302","四川省自贡市自流井区","");
array_3_242[2]=new ListBoxItem("510303","四川省自贡市贡井区","");
array_3_242[3]=new ListBoxItem("510304","四川省自贡市大安区","");
array_3_242[4]=new ListBoxItem("510311","四川省自贡市沿滩区","");
array_3_242[5]=new ListBoxItem("510321","四川省荣县","");
array_3_242[6]=new ListBoxItem("510322","四川省富顺县","");
map.put(new Entry("510300",array_3_242));

var array_3_243=new Array();
array_3_243[0]=new ListBoxItem("510401","四川省攀枝花市市辖区","");
array_3_243[1]=new ListBoxItem("510402","四川省攀枝花市东区","");
array_3_243[2]=new ListBoxItem("510403","四川省攀枝花市西区","");
array_3_243[3]=new ListBoxItem("510411","四川省攀枝花市仁和区","");
array_3_243[4]=new ListBoxItem("510421","四川省米易县","");
array_3_243[5]=new ListBoxItem("510422","四川省盐边县","");
map.put(new Entry("510400",array_3_243));

var array_3_244=new Array();
array_3_244[0]=new ListBoxItem("510501","四川省泸州市市辖区","");
array_3_244[1]=new ListBoxItem("510502","四川省泸州市江阳区","");
array_3_244[2]=new ListBoxItem("510503","四川省泸州市纳溪区","");
array_3_244[3]=new ListBoxItem("510504","四川省泸州市龙马潭区","");
array_3_244[4]=new ListBoxItem("510521","四川省泸县","");
array_3_244[5]=new ListBoxItem("510522","四川省合江县","");
array_3_244[6]=new ListBoxItem("510524","四川省叙永县","");
array_3_244[7]=new ListBoxItem("510525","四川省古蔺县","");
map.put(new Entry("510500",array_3_244));

var array_3_245=new Array();
array_3_245[0]=new ListBoxItem("510601","四川省德阳市市辖区","");
array_3_245[1]=new ListBoxItem("510603","四川省德阳市旌阳区","");
array_3_245[2]=new ListBoxItem("510623","四川省中江县","");
array_3_245[3]=new ListBoxItem("510626","四川省罗江县","");
array_3_245[4]=new ListBoxItem("510681","四川省广汉市","");
array_3_245[5]=new ListBoxItem("510682","四川省什邡市","");
array_3_245[6]=new ListBoxItem("510683","四川省绵竹市","");
map.put(new Entry("510600",array_3_245));

var array_3_246=new Array();
array_3_246[0]=new ListBoxItem("510701","四川省绵阳市市辖区","");
array_3_246[1]=new ListBoxItem("510703","四川省绵阳市涪城区","");
array_3_246[2]=new ListBoxItem("510704","四川省绵阳市游仙区","");
array_3_246[3]=new ListBoxItem("510722","四川省三台县","");
array_3_246[4]=new ListBoxItem("510723","四川省盐亭县","");
array_3_246[5]=new ListBoxItem("510724","四川省安县","");
array_3_246[6]=new ListBoxItem("510725","四川省梓潼县","");
array_3_246[7]=new ListBoxItem("510726","四川省北川羌族自治县","");
array_3_246[8]=new ListBoxItem("510727","四川省平武县","");
array_3_246[9]=new ListBoxItem("510781","四川省江油市","");
map.put(new Entry("510700",array_3_246));

var array_3_247=new Array();
array_3_247[0]=new ListBoxItem("510801","四川省广元市市辖区","");
array_3_247[1]=new ListBoxItem("510802","四川省广元市市中区","");
array_3_247[2]=new ListBoxItem("510811","四川省广元市元坝区","");
array_3_247[3]=new ListBoxItem("510812","四川省广元市朝天区","");
array_3_247[4]=new ListBoxItem("510821","四川省旺苍县","");
array_3_247[5]=new ListBoxItem("510822","四川省青川县","");
array_3_247[6]=new ListBoxItem("510823","四川省剑阁县","");
array_3_247[7]=new ListBoxItem("510824","四川省苍溪县","");
map.put(new Entry("510800",array_3_247));

var array_3_248=new Array();
array_3_248[0]=new ListBoxItem("510901","四川省遂宁市市辖区","");
array_3_248[1]=new ListBoxItem("510903","四川省遂宁市船山区","");
array_3_248[2]=new ListBoxItem("510904","四川省遂宁市安居区","");
array_3_248[3]=new ListBoxItem("510921","四川省蓬溪县","");
array_3_248[4]=new ListBoxItem("510922","四川省射洪县","");
array_3_248[5]=new ListBoxItem("510923","四川省大英县","");
map.put(new Entry("510900",array_3_248));

var array_3_249=new Array();
array_3_249[0]=new ListBoxItem("511001","四川省内江市市辖区","");
array_3_249[1]=new ListBoxItem("511002","四川省内江市市中区","");
array_3_249[2]=new ListBoxItem("511011","四川省内江市东兴区","");
array_3_249[3]=new ListBoxItem("511024","四川省威远县","");
array_3_249[4]=new ListBoxItem("511025","四川省资中县","");
array_3_249[5]=new ListBoxItem("511028","四川省隆昌县","");
map.put(new Entry("511000",array_3_249));

var array_3_250=new Array();
array_3_250[0]=new ListBoxItem("511101","四川省乐山市市辖区","");
array_3_250[1]=new ListBoxItem("511102","四川省乐山市市中区","");
array_3_250[2]=new ListBoxItem("511111","四川省乐山市沙湾区","");
array_3_250[3]=new ListBoxItem("511112","四川省乐山市五通桥区","");
array_3_250[4]=new ListBoxItem("511113","四川省乐山市金口河区","");
array_3_250[5]=new ListBoxItem("511123","四川省犍为县","");
array_3_250[6]=new ListBoxItem("511124","四川省井研县","");
array_3_250[7]=new ListBoxItem("511126","四川省夹江县","");
array_3_250[8]=new ListBoxItem("511129","四川省沐川县","");
array_3_250[9]=new ListBoxItem("511132","四川省峨边彝族自治县","");
array_3_250[10]=new ListBoxItem("511133","四川省马边彝族自治县","");
array_3_250[11]=new ListBoxItem("511181","四川省峨眉山市","");
map.put(new Entry("511100",array_3_250));

var array_3_251=new Array();
array_3_251[0]=new ListBoxItem("511301","四川省南充市市辖区","");
array_3_251[1]=new ListBoxItem("511302","四川省南充市顺庆区","");
array_3_251[2]=new ListBoxItem("511303","四川省南充市高坪区","");
array_3_251[3]=new ListBoxItem("511304","四川省南充市嘉陵区","");
array_3_251[4]=new ListBoxItem("511321","四川省南部县","");
array_3_251[5]=new ListBoxItem("511322","四川省营山县","");
array_3_251[6]=new ListBoxItem("511323","四川省蓬安县","");
array_3_251[7]=new ListBoxItem("511324","四川省仪陇县","");
array_3_251[8]=new ListBoxItem("511325","四川省西充县","");
array_3_251[9]=new ListBoxItem("511381","四川省阆中市","");
map.put(new Entry("511300",array_3_251));

var array_3_252=new Array();
array_3_252[0]=new ListBoxItem("511401","四川省眉山市市辖区","");
array_3_252[1]=new ListBoxItem("511402","四川省眉山市东坡区","");
array_3_252[2]=new ListBoxItem("511421","四川省仁寿县","");
array_3_252[3]=new ListBoxItem("511422","四川省彭山县","");
array_3_252[4]=new ListBoxItem("511423","四川省洪雅县","");
array_3_252[5]=new ListBoxItem("511424","四川省丹棱县","");
array_3_252[6]=new ListBoxItem("511425","四川省青神县","");
map.put(new Entry("511400",array_3_252));

var array_3_253=new Array();
array_3_253[0]=new ListBoxItem("511501","四川省宜宾市市辖区","");
array_3_253[1]=new ListBoxItem("511502","四川省宜宾市翠屏区","");
array_3_253[2]=new ListBoxItem("511521","四川省宜宾县","");
array_3_253[3]=new ListBoxItem("511522","四川省南溪县","");
array_3_253[4]=new ListBoxItem("511523","四川省江安县","");
array_3_253[5]=new ListBoxItem("511524","四川省长宁县","");
array_3_253[6]=new ListBoxItem("511525","四川省高县","");
array_3_253[7]=new ListBoxItem("511526","四川省珙县","");
array_3_253[8]=new ListBoxItem("511527","四川省筠连县","");
array_3_253[9]=new ListBoxItem("511528","四川省兴文县","");
array_3_253[10]=new ListBoxItem("511529","四川省屏山县","");
map.put(new Entry("511500",array_3_253));

var array_3_254=new Array();
array_3_254[0]=new ListBoxItem("511601","四川省广安市市辖区","");
array_3_254[1]=new ListBoxItem("511602","四川省广安市广安区","");
array_3_254[2]=new ListBoxItem("511621","四川省岳池县","");
array_3_254[3]=new ListBoxItem("511622","四川省武胜县","");
array_3_254[4]=new ListBoxItem("511623","四川省邻水县","");
array_3_254[5]=new ListBoxItem("511681","四川省华莹市","");
map.put(new Entry("511600",array_3_254));

var array_3_255=new Array();
array_3_255[0]=new ListBoxItem("511701","四川省达州市市辖区","");
array_3_255[1]=new ListBoxItem("511702","四川省达州市通川区","");
array_3_255[2]=new ListBoxItem("511721","四川省达县","");
array_3_255[3]=new ListBoxItem("511722","四川省宣汉县","");
array_3_255[4]=new ListBoxItem("511723","四川省开江县","");
array_3_255[5]=new ListBoxItem("511724","四川省大竹县","");
array_3_255[6]=new ListBoxItem("511725","四川省渠县","");
array_3_255[7]=new ListBoxItem("511781","四川省万源市","");
map.put(new Entry("511700",array_3_255));

var array_3_256=new Array();
array_3_256[0]=new ListBoxItem("511801","四川省雅安市市辖区","");
array_3_256[1]=new ListBoxItem("511802","四川省雅安市雨城区","");
array_3_256[2]=new ListBoxItem("511821","四川省名山县","");
array_3_256[3]=new ListBoxItem("511822","四川省荥经县","");
array_3_256[4]=new ListBoxItem("511823","四川省汉源县","");
array_3_256[5]=new ListBoxItem("511824","四川省石棉县","");
array_3_256[6]=new ListBoxItem("511825","四川省天全县","");
array_3_256[7]=new ListBoxItem("511826","四川省芦山县","");
array_3_256[8]=new ListBoxItem("511827","四川省宝兴县","");
map.put(new Entry("511800",array_3_256));

var array_3_257=new Array();
array_3_257[0]=new ListBoxItem("511901","四川省巴中市市辖区","");
array_3_257[1]=new ListBoxItem("511902","四川省巴中市巴州区","");
array_3_257[2]=new ListBoxItem("511921","四川省通江县","");
array_3_257[3]=new ListBoxItem("511922","四川省南江县","");
array_3_257[4]=new ListBoxItem("511923","四川省平昌县","");
map.put(new Entry("511900",array_3_257));

var array_3_258=new Array();
array_3_258[0]=new ListBoxItem("512001","四川省资阳市市辖区","");
array_3_258[1]=new ListBoxItem("512002","四川省资阳市雁江区","");
array_3_258[2]=new ListBoxItem("512021","四川省安岳县","");
array_3_258[3]=new ListBoxItem("512022","四川省乐至县","");
array_3_258[4]=new ListBoxItem("512081","四川省简阳市","");
map.put(new Entry("512000",array_3_258));

var array_3_259=new Array();
array_3_259[0]=new ListBoxItem("513221","四川省汶川县","");
array_3_259[1]=new ListBoxItem("513222","四川省理县","");
array_3_259[2]=new ListBoxItem("513223","四川省茂县","");
array_3_259[3]=new ListBoxItem("513224","四川省松潘县","");
array_3_259[4]=new ListBoxItem("513225","四川省九寨沟县","");
array_3_259[5]=new ListBoxItem("513226","四川省金川县","");
array_3_259[6]=new ListBoxItem("513227","四川省小金县","");
array_3_259[7]=new ListBoxItem("513228","四川省黑水县","");
array_3_259[8]=new ListBoxItem("513229","四川省马尔康县","");
array_3_259[9]=new ListBoxItem("513230","四川省壤塘县","");
array_3_259[10]=new ListBoxItem("513231","四川省阿坝县","");
array_3_259[11]=new ListBoxItem("513232","四川省若尔盖县","");
array_3_259[12]=new ListBoxItem("513233","四川省红原县","");
map.put(new Entry("513200",array_3_259));

var array_3_260=new Array();
array_3_260[0]=new ListBoxItem("513321","四川省康定县","");
array_3_260[1]=new ListBoxItem("513322","四川省泸定县","");
array_3_260[2]=new ListBoxItem("513323","四川省丹巴县","");
array_3_260[3]=new ListBoxItem("513324","四川省九龙县","");
array_3_260[4]=new ListBoxItem("513325","四川省雅江县","");
array_3_260[5]=new ListBoxItem("513326","四川省道孚县","");
array_3_260[6]=new ListBoxItem("513327","四川省炉霍县","");
array_3_260[7]=new ListBoxItem("513328","四川省甘孜县","");
array_3_260[8]=new ListBoxItem("513329","四川省新龙县","");
array_3_260[9]=new ListBoxItem("513330","四川省德格县","");
array_3_260[10]=new ListBoxItem("513331","四川省白玉县","");
array_3_260[11]=new ListBoxItem("513332","四川省石渠县","");
array_3_260[12]=new ListBoxItem("513333","四川省色达县","");
array_3_260[13]=new ListBoxItem("513334","四川省理塘县","");
array_3_260[14]=new ListBoxItem("513335","四川省巴塘县","");
array_3_260[15]=new ListBoxItem("513336","四川省乡城县","");
array_3_260[16]=new ListBoxItem("513337","四川省稻城县","");
array_3_260[17]=new ListBoxItem("513338","四川省得荣县","");
map.put(new Entry("513300",array_3_260));

var array_3_261=new Array();
array_3_261[0]=new ListBoxItem("513401","四川省西昌市","");
array_3_261[1]=new ListBoxItem("513422","四川省木里藏族自治县","");
array_3_261[2]=new ListBoxItem("513423","四川省盐源县","");
array_3_261[3]=new ListBoxItem("513424","四川省德昌县","");
array_3_261[4]=new ListBoxItem("513425","四川省会理县","");
array_3_261[5]=new ListBoxItem("513426","四川省会东县","");
array_3_261[6]=new ListBoxItem("513427","四川省宁南县","");
array_3_261[7]=new ListBoxItem("513428","四川省普格县","");
array_3_261[8]=new ListBoxItem("513429","四川省布拖县","");
array_3_261[9]=new ListBoxItem("513430","四川省金阳县","");
array_3_261[10]=new ListBoxItem("513431","四川省昭觉县","");
array_3_261[11]=new ListBoxItem("513432","四川省喜德县","");
array_3_261[12]=new ListBoxItem("513433","四川省冕宁县","");
array_3_261[13]=new ListBoxItem("513434","四川省越西县","");
array_3_261[14]=new ListBoxItem("513435","四川省甘洛县","");
array_3_261[15]=new ListBoxItem("513436","四川省美姑县","");
array_3_261[16]=new ListBoxItem("513437","四川省雷波县","");
map.put(new Entry("513400",array_3_261));

var array_3_262=new Array();
array_3_262[0]=new ListBoxItem("520101","贵州省贵阳市市辖区","");
array_3_262[1]=new ListBoxItem("520102","贵州省贵阳市南明区","");
array_3_262[2]=new ListBoxItem("520103","贵州省贵阳市云岩区","");
array_3_262[3]=new ListBoxItem("520111","贵州省贵阳市花溪区","");
array_3_262[4]=new ListBoxItem("520112","贵州省贵阳市乌当区","");
array_3_262[5]=new ListBoxItem("520113","贵州省贵阳市白云区","");
array_3_262[6]=new ListBoxItem("520114","贵州省贵阳市小河区","");
array_3_262[7]=new ListBoxItem("520121","贵州省开阳县","");
array_3_262[8]=new ListBoxItem("520122","贵州省息烽县","");
array_3_262[9]=new ListBoxItem("520123","贵州省修文县","");
array_3_262[10]=new ListBoxItem("520181","贵州省清镇市","");
map.put(new Entry("520100",array_3_262));

var array_3_263=new Array();
array_3_263[0]=new ListBoxItem("520201","贵州省六盘水市钟山区","");
array_3_263[1]=new ListBoxItem("520203","贵州省六盘水市六枝特区","");
array_3_263[2]=new ListBoxItem("520221","贵州省水城县","");
array_3_263[3]=new ListBoxItem("520222","贵州省盘县","");
map.put(new Entry("520200",array_3_263));

var array_3_264=new Array();
array_3_264[0]=new ListBoxItem("520301","贵州省遵义市市辖区","");
array_3_264[1]=new ListBoxItem("520302","贵州省遵义市红花岗区","");
array_3_264[2]=new ListBoxItem("520303","贵州省遵义市汇川区","");
array_3_264[3]=new ListBoxItem("520321","贵州省遵义县","");
array_3_264[4]=new ListBoxItem("520322","贵州省桐梓县","");
array_3_264[5]=new ListBoxItem("520323","贵州省绥阳县","");
array_3_264[6]=new ListBoxItem("520324","贵州省正安县","");
array_3_264[7]=new ListBoxItem("520325","贵州省道真仡佬族苗族自治县","");
array_3_264[8]=new ListBoxItem("520326","贵州省务川仡佬族苗族自治县","");
array_3_264[9]=new ListBoxItem("520327","贵州省凤冈县","");
array_3_264[10]=new ListBoxItem("520328","贵州省湄潭县","");
array_3_264[11]=new ListBoxItem("520329","贵州省余庆县","");
array_3_264[12]=new ListBoxItem("520330","贵州省习水县","");
array_3_264[13]=new ListBoxItem("520381","贵州省赤水市","");
array_3_264[14]=new ListBoxItem("520382","贵州省仁怀市","");
map.put(new Entry("520300",array_3_264));

var array_3_265=new Array();
array_3_265[0]=new ListBoxItem("520401","贵州省安顺市市辖区","");
array_3_265[1]=new ListBoxItem("520402","贵州省安顺市西秀区","");
array_3_265[2]=new ListBoxItem("520421","贵州省平坝县","");
array_3_265[3]=new ListBoxItem("520422","贵州省普定县","");
array_3_265[4]=new ListBoxItem("520423","贵州省镇宁布依族苗族自治县","");
array_3_265[5]=new ListBoxItem("520424","贵州省关岭布依族苗族自治县","");
array_3_265[6]=new ListBoxItem("520425","贵州省紫云苗族布依族自治县","");
map.put(new Entry("520400",array_3_265));

var array_3_266=new Array();
array_3_266[0]=new ListBoxItem("522201","贵州省铜仁市","");
array_3_266[1]=new ListBoxItem("522222","贵州省江口县","");
array_3_266[2]=new ListBoxItem("522223","贵州省玉屏侗族自治县","");
array_3_266[3]=new ListBoxItem("522224","贵州省石阡县","");
array_3_266[4]=new ListBoxItem("522225","贵州省思南县","");
array_3_266[5]=new ListBoxItem("522226","贵州省印江土家族苗族自治县","");
array_3_266[6]=new ListBoxItem("522227","贵州省德江县","");
array_3_266[7]=new ListBoxItem("522228","贵州省沿河土家族自治县","");
array_3_266[8]=new ListBoxItem("522229","贵州省松桃苗族自治县","");
array_3_266[9]=new ListBoxItem("522230","贵州省铜仁地区万山特区","");
map.put(new Entry("522200",array_3_266));

var array_3_267=new Array();
array_3_267[0]=new ListBoxItem("522301","贵州省兴义市","");
array_3_267[1]=new ListBoxItem("522322","贵州省兴仁县","");
array_3_267[2]=new ListBoxItem("522323","贵州省普安县","");
array_3_267[3]=new ListBoxItem("522324","贵州省晴隆县","");
array_3_267[4]=new ListBoxItem("522325","贵州省贞丰县","");
array_3_267[5]=new ListBoxItem("522326","贵州省望谟县","");
array_3_267[6]=new ListBoxItem("522327","贵州省册亨县","");
array_3_267[7]=new ListBoxItem("522328","贵州省安龙县","");
map.put(new Entry("522300",array_3_267));

var array_3_268=new Array();
array_3_268[0]=new ListBoxItem("522401","贵州省毕节市","");
array_3_268[1]=new ListBoxItem("522422","贵州省大方县","");
array_3_268[2]=new ListBoxItem("522423","贵州省黔西县","");
array_3_268[3]=new ListBoxItem("522424","贵州省金沙县","");
array_3_268[4]=new ListBoxItem("522425","贵州省织金县","");
array_3_268[5]=new ListBoxItem("522426","贵州省纳雍县","");
array_3_268[6]=new ListBoxItem("522427","贵州省威宁彝族回族苗族自治县","");
array_3_268[7]=new ListBoxItem("522428","贵州省赫章县","");
map.put(new Entry("522400",array_3_268));

var array_3_269=new Array();
array_3_269[0]=new ListBoxItem("522601","贵州省凯里市","");
array_3_269[1]=new ListBoxItem("522622","贵州省黄平县","");
array_3_269[2]=new ListBoxItem("522623","贵州省施秉县","");
array_3_269[3]=new ListBoxItem("522624","贵州省三穗县","");
array_3_269[4]=new ListBoxItem("522625","贵州省镇远县","");
array_3_269[5]=new ListBoxItem("522626","贵州省岑巩县","");
array_3_269[6]=new ListBoxItem("522627","贵州省天柱县","");
array_3_269[7]=new ListBoxItem("522628","贵州省锦屏县","");
array_3_269[8]=new ListBoxItem("522629","贵州省剑河县","");
array_3_269[9]=new ListBoxItem("522630","贵州省台江县","");
array_3_269[10]=new ListBoxItem("522631","贵州省黎平县","");
array_3_269[11]=new ListBoxItem("522632","贵州省榕江县","");
array_3_269[12]=new ListBoxItem("522633","贵州省从江县","");
array_3_269[13]=new ListBoxItem("522634","贵州省雷山县","");
array_3_269[14]=new ListBoxItem("522635","贵州省麻江县","");
array_3_269[15]=new ListBoxItem("522636","贵州省丹寨县","");
map.put(new Entry("522600",array_3_269));

var array_3_270=new Array();
array_3_270[0]=new ListBoxItem("522701","贵州省都匀市","");
array_3_270[1]=new ListBoxItem("522702","贵州省福泉市","");
array_3_270[2]=new ListBoxItem("522722","贵州省荔波县","");
array_3_270[3]=new ListBoxItem("522723","贵州省贵定县","");
array_3_270[4]=new ListBoxItem("522725","贵州省瓮安县","");
array_3_270[5]=new ListBoxItem("522726","贵州省独山县","");
array_3_270[6]=new ListBoxItem("522727","贵州省平塘县","");
array_3_270[7]=new ListBoxItem("522728","贵州省罗甸县","");
array_3_270[8]=new ListBoxItem("522729","贵州省长顺县","");
array_3_270[9]=new ListBoxItem("522730","贵州省龙里县","");
array_3_270[10]=new ListBoxItem("522731","贵州省惠水县","");
array_3_270[11]=new ListBoxItem("522732","贵州省三都水族自治县","");
map.put(new Entry("522700",array_3_270));

var array_3_271=new Array();
array_3_271[0]=new ListBoxItem("530101","云南省昆明市市辖区","");
array_3_271[1]=new ListBoxItem("530102","云南省昆明市五华区","");
array_3_271[2]=new ListBoxItem("530103","云南省昆明市盘龙区","");
array_3_271[3]=new ListBoxItem("530111","云南省昆明市官渡区","");
array_3_271[4]=new ListBoxItem("530112","云南省昆明市西山区","");
array_3_271[5]=new ListBoxItem("530113","云南省昆明市东川区","");
array_3_271[6]=new ListBoxItem("530121","云南省呈贡县","");
array_3_271[7]=new ListBoxItem("530122","云南省晋宁县","");
array_3_271[8]=new ListBoxItem("530124","云南省富民县","");
array_3_271[9]=new ListBoxItem("530125","云南省宜良县","");
array_3_271[10]=new ListBoxItem("530126","云南省石林彝族自治县","");
array_3_271[11]=new ListBoxItem("530127","云南省嵩明县","");
array_3_271[12]=new ListBoxItem("530128","云南省禄劝彝族苗族自治县","");
array_3_271[13]=new ListBoxItem("530129","云南省寻甸回族彝族自治县","");
array_3_271[14]=new ListBoxItem("530181","云南省安宁市","");
map.put(new Entry("530100",array_3_271));

var array_3_272=new Array();
array_3_272[0]=new ListBoxItem("530301","云南省曲靖市市辖区","");
array_3_272[1]=new ListBoxItem("530302","云南省曲靖市麒麟区","");
array_3_272[2]=new ListBoxItem("530321","云南省马龙县","");
array_3_272[3]=new ListBoxItem("530322","云南省陆良县","");
array_3_272[4]=new ListBoxItem("530323","云南省师宗县","");
array_3_272[5]=new ListBoxItem("530324","云南省罗平县","");
array_3_272[6]=new ListBoxItem("530325","云南省富源县","");
array_3_272[7]=new ListBoxItem("530326","云南省会泽县","");
array_3_272[8]=new ListBoxItem("530328","云南省沾益县","");
array_3_272[9]=new ListBoxItem("530381","云南省宣威市","");
map.put(new Entry("530300",array_3_272));

var array_3_273=new Array();
array_3_273[0]=new ListBoxItem("530401","云南省玉溪市市辖区","");
array_3_273[1]=new ListBoxItem("530402","云南省玉溪市红塔区","");
array_3_273[2]=new ListBoxItem("530421","云南省江川县","");
array_3_273[3]=new ListBoxItem("530422","云南省澄江县","");
array_3_273[4]=new ListBoxItem("530423","云南省通海县","");
array_3_273[5]=new ListBoxItem("530424","云南省华宁县","");
array_3_273[6]=new ListBoxItem("530425","云南省易门县","");
array_3_273[7]=new ListBoxItem("530426","云南省峨山彝族自治县","");
array_3_273[8]=new ListBoxItem("530427","云南省新平彝族傣族自治县","");
array_3_273[9]=new ListBoxItem("530428","云南省元江哈尼族彝族傣族自治县","");
map.put(new Entry("530400",array_3_273));

var array_3_274=new Array();
array_3_274[0]=new ListBoxItem("530501","云南省保山市市辖区","");
array_3_274[1]=new ListBoxItem("530502","云南省保山市隆阳区","");
array_3_274[2]=new ListBoxItem("530521","云南省施甸县","");
array_3_274[3]=new ListBoxItem("530522","云南省腾冲县","");
array_3_274[4]=new ListBoxItem("530523","云南省龙陵县","");
array_3_274[5]=new ListBoxItem("530524","云南省昌宁县","");
map.put(new Entry("530500",array_3_274));

var array_3_275=new Array();
array_3_275[0]=new ListBoxItem("530601","云南省昭通市市辖区","");
array_3_275[1]=new ListBoxItem("530602","云南省昭通市昭阳区","");
array_3_275[2]=new ListBoxItem("530621","云南省鲁甸县","");
array_3_275[3]=new ListBoxItem("530622","云南省巧家县","");
array_3_275[4]=new ListBoxItem("530623","云南省盐津县","");
array_3_275[5]=new ListBoxItem("530624","云南省大关县","");
array_3_275[6]=new ListBoxItem("530625","云南省永善县","");
array_3_275[7]=new ListBoxItem("530626","云南省绥江县","");
array_3_275[8]=new ListBoxItem("530627","云南省镇雄县","");
array_3_275[9]=new ListBoxItem("530628","云南省彝良县","");
array_3_275[10]=new ListBoxItem("530629","云南省威信县","");
array_3_275[11]=new ListBoxItem("530630","云南省水富县","");
map.put(new Entry("530600",array_3_275));

var array_3_276=new Array();
array_3_276[0]=new ListBoxItem("530701","云南省丽江市市辖区","");
array_3_276[1]=new ListBoxItem("530702","云南省丽江市古城区","");
array_3_276[2]=new ListBoxItem("530721","云南省玉龙纳西族自治县","");
array_3_276[3]=new ListBoxItem("530722","云南省永胜县","");
array_3_276[4]=new ListBoxItem("530723","云南省华坪县","");
array_3_276[5]=new ListBoxItem("530724","云南省宁蒗彝族自治县","");
map.put(new Entry("530700",array_3_276));

var array_3_277=new Array();
array_3_277[0]=new ListBoxItem("530801","云南省思茅市市辖区","");
array_3_277[1]=new ListBoxItem("530802","云南省思茅市翠云区","");
array_3_277[2]=new ListBoxItem("530821","云南省普洱哈尼族彝族自治县","");
array_3_277[3]=new ListBoxItem("530822","云南省墨江哈尼族自治县","");
array_3_277[4]=new ListBoxItem("530823","云南省景东彝族自治县","");
array_3_277[5]=new ListBoxItem("530824","云南省景谷傣族彝族自治县","");
array_3_277[6]=new ListBoxItem("530825","云南省镇沅彝族哈尼族拉祜族自治县","");
array_3_277[7]=new ListBoxItem("530826","云南省江城哈尼族彝族自治县","");
array_3_277[8]=new ListBoxItem("530827","云南省孟连傣族拉祜族佤族自治县","");
array_3_277[9]=new ListBoxItem("530828","云南省澜沧拉祜族自治县","");
array_3_277[10]=new ListBoxItem("530829","云南省西盟佤族自治县","");
map.put(new Entry("530800",array_3_277));

var array_3_278=new Array();
array_3_278[0]=new ListBoxItem("530901","云南省临沧市市辖区","");
array_3_278[1]=new ListBoxItem("530902","云南省临沧市临翔区","");
array_3_278[2]=new ListBoxItem("530921","云南省凤庆县","");
array_3_278[3]=new ListBoxItem("530922","云南省云县","");
array_3_278[4]=new ListBoxItem("530923","云南省永德县","");
array_3_278[5]=new ListBoxItem("530924","云南省镇康县","");
array_3_278[6]=new ListBoxItem("530925","云南省双江拉祜族佤族布朗族傣族自治县","");
array_3_278[7]=new ListBoxItem("530926","云南省耿马傣族佤族自治县","");
array_3_278[8]=new ListBoxItem("530927","云南省沧源佤族自治县","");
map.put(new Entry("530900",array_3_278));

var array_3_279=new Array();
array_3_279[0]=new ListBoxItem("532301","云南省楚雄市","");
array_3_279[1]=new ListBoxItem("532322","云南省双柏县","");
array_3_279[2]=new ListBoxItem("532323","云南省牟定县","");
array_3_279[3]=new ListBoxItem("532324","云南省南华县","");
array_3_279[4]=new ListBoxItem("532325","云南省姚安县","");
array_3_279[5]=new ListBoxItem("532326","云南省大姚县","");
array_3_279[6]=new ListBoxItem("532327","云南省永仁县","");
array_3_279[7]=new ListBoxItem("532328","云南省元谋县","");
array_3_279[8]=new ListBoxItem("532329","云南省武定县","");
array_3_279[9]=new ListBoxItem("532331","云南省禄丰县","");
map.put(new Entry("532300",array_3_279));

var array_3_280=new Array();
array_3_280[0]=new ListBoxItem("532501","云南省个旧市","");
array_3_280[1]=new ListBoxItem("532502","云南省开远市","");
array_3_280[2]=new ListBoxItem("532522","云南省蒙自县","");
array_3_280[3]=new ListBoxItem("532523","云南省屏边苗族自治县","");
array_3_280[4]=new ListBoxItem("532524","云南省建水县","");
array_3_280[5]=new ListBoxItem("532525","云南省石屏县","");
array_3_280[6]=new ListBoxItem("532526","云南省弥勒县","");
array_3_280[7]=new ListBoxItem("532527","云南省泸西县","");
array_3_280[8]=new ListBoxItem("532528","云南省元阳县","");
array_3_280[9]=new ListBoxItem("532529","云南省红河县","");
array_3_280[10]=new ListBoxItem("532530","云南省金平苗族瑶族傣族自治县","");
array_3_280[11]=new ListBoxItem("532531","云南省绿春县","");
array_3_280[12]=new ListBoxItem("532532","云南省河口瑶族自治县","");
map.put(new Entry("532500",array_3_280));

var array_3_281=new Array();
array_3_281[0]=new ListBoxItem("532621","云南省文山县","");
array_3_281[1]=new ListBoxItem("532622","云南省砚山县","");
array_3_281[2]=new ListBoxItem("532623","云南省西畴县","");
array_3_281[3]=new ListBoxItem("532624","云南省麻栗坡县","");
array_3_281[4]=new ListBoxItem("532625","云南省马关县","");
array_3_281[5]=new ListBoxItem("532626","云南省丘北县","");
array_3_281[6]=new ListBoxItem("532627","云南省广南县","");
array_3_281[7]=new ListBoxItem("532628","云南省富宁县","");
map.put(new Entry("532600",array_3_281));

var array_3_282=new Array();
array_3_282[0]=new ListBoxItem("532801","云南省景洪市","");
array_3_282[1]=new ListBoxItem("532822","云南省勐海县","");
array_3_282[2]=new ListBoxItem("532823","云南省勐腊县","");
map.put(new Entry("532800",array_3_282));

var array_3_283=new Array();
array_3_283[0]=new ListBoxItem("532901","云南省大理市","");
array_3_283[1]=new ListBoxItem("532922","云南省漾濞彝族自治县","");
array_3_283[2]=new ListBoxItem("532923","云南省祥云县","");
array_3_283[3]=new ListBoxItem("532924","云南省宾川县","");
array_3_283[4]=new ListBoxItem("532925","云南省弥渡县","");
array_3_283[5]=new ListBoxItem("532926","云南省南涧彝族自治县","");
array_3_283[6]=new ListBoxItem("532927","云南省巍山彝族回族自治县","");
array_3_283[7]=new ListBoxItem("532928","云南省永平县","");
array_3_283[8]=new ListBoxItem("532929","云南省云龙县","");
array_3_283[9]=new ListBoxItem("532930","云南省洱源县","");
array_3_283[10]=new ListBoxItem("532931","云南省剑川县","");
array_3_283[11]=new ListBoxItem("532932","云南省鹤庆县","");
map.put(new Entry("532900",array_3_283));

var array_3_284=new Array();
array_3_284[0]=new ListBoxItem("533102","云南省瑞丽市","");
array_3_284[1]=new ListBoxItem("533103","云南省潞西市","");
array_3_284[2]=new ListBoxItem("533122","云南省梁河县","");
array_3_284[3]=new ListBoxItem("533123","云南省盈江县","");
array_3_284[4]=new ListBoxItem("533124","云南省陇川县","");
map.put(new Entry("533100",array_3_284));

var array_3_285=new Array();
array_3_285[0]=new ListBoxItem("533321","云南省泸水县","");
array_3_285[1]=new ListBoxItem("533323","云南省福贡县","");
array_3_285[2]=new ListBoxItem("533324","云南省贡山独龙族怒族自治县","");
array_3_285[3]=new ListBoxItem("533325","云南省兰坪白族普米族自治县","");
map.put(new Entry("533300",array_3_285));

var array_3_286=new Array();
array_3_286[0]=new ListBoxItem("533421","云南省香格里拉县","");
array_3_286[1]=new ListBoxItem("533422","云南省德钦县","");
array_3_286[2]=new ListBoxItem("533423","云南省维西傈僳族自治县","");
map.put(new Entry("533400",array_3_286));

var array_3_287=new Array();
array_3_287[0]=new ListBoxItem("540101","西藏自治区拉萨市市辖区","");
array_3_287[1]=new ListBoxItem("540102","西藏自治区拉萨市城关区","");
array_3_287[2]=new ListBoxItem("540121","西藏自治区林周县","");
array_3_287[3]=new ListBoxItem("540122","西藏自治区当雄县","");
array_3_287[4]=new ListBoxItem("540123","西藏自治区尼木县","");
array_3_287[5]=new ListBoxItem("540124","西藏自治区曲水县","");
array_3_287[6]=new ListBoxItem("540125","西藏自治区堆龙德庆县","");
array_3_287[7]=new ListBoxItem("540126","西藏自治区达孜县","");
array_3_287[8]=new ListBoxItem("540127","西藏自治区墨竹工卡县","");
map.put(new Entry("540100",array_3_287));

var array_3_288=new Array();
array_3_288[0]=new ListBoxItem("542121","西藏自治区昌都县","");
array_3_288[1]=new ListBoxItem("542122","西藏自治区江达县","");
array_3_288[2]=new ListBoxItem("542123","西藏自治区贡觉县","");
array_3_288[3]=new ListBoxItem("542124","西藏自治区类乌齐县","");
array_3_288[4]=new ListBoxItem("542125","西藏自治区丁青县","");
array_3_288[5]=new ListBoxItem("542126","西藏自治区察雅县","");
array_3_288[6]=new ListBoxItem("542127","西藏自治区八宿县","");
array_3_288[7]=new ListBoxItem("542128","西藏自治区左贡县","");
array_3_288[8]=new ListBoxItem("542129","西藏自治区芒康县","");
array_3_288[9]=new ListBoxItem("542132","西藏自治区洛隆县","");
array_3_288[10]=new ListBoxItem("542133","西藏自治区边坝县","");
map.put(new Entry("542100",array_3_288));

var array_3_289=new Array();
array_3_289[0]=new ListBoxItem("542221","西藏自治区乃东县","");
array_3_289[1]=new ListBoxItem("542222","西藏自治区扎囊县","");
array_3_289[2]=new ListBoxItem("542223","西藏自治区贡嘎县","");
array_3_289[3]=new ListBoxItem("542224","西藏自治区桑日县","");
array_3_289[4]=new ListBoxItem("542225","西藏自治区琼结县","");
array_3_289[5]=new ListBoxItem("542226","西藏自治区曲松县","");
array_3_289[6]=new ListBoxItem("542227","西藏自治区措美县","");
array_3_289[7]=new ListBoxItem("542228","西藏自治区洛扎县","");
array_3_289[8]=new ListBoxItem("542229","西藏自治区加查县","");
array_3_289[9]=new ListBoxItem("542231","西藏自治区隆子县","");
array_3_289[10]=new ListBoxItem("542232","西藏自治区错那县","");
array_3_289[11]=new ListBoxItem("542233","西藏自治区浪卡子县","");
map.put(new Entry("542200",array_3_289));

var array_3_290=new Array();
array_3_290[0]=new ListBoxItem("542301","西藏自治区日喀则市","");
array_3_290[1]=new ListBoxItem("542322","西藏自治区南木林县","");
array_3_290[2]=new ListBoxItem("542323","西藏自治区江孜县","");
array_3_290[3]=new ListBoxItem("542324","西藏自治区定日县","");
array_3_290[4]=new ListBoxItem("542325","西藏自治区萨迦县","");
array_3_290[5]=new ListBoxItem("542326","西藏自治区拉孜县","");
array_3_290[6]=new ListBoxItem("542327","西藏自治区昂仁县","");
array_3_290[7]=new ListBoxItem("542328","西藏自治区谢通门县","");
array_3_290[8]=new ListBoxItem("542329","西藏自治区白朗县","");
array_3_290[9]=new ListBoxItem("542330","西藏自治区仁布县","");
array_3_290[10]=new ListBoxItem("542331","西藏自治区康马县","");
array_3_290[11]=new ListBoxItem("542332","西藏自治区定结县","");
array_3_290[12]=new ListBoxItem("542333","西藏自治区仲巴县","");
array_3_290[13]=new ListBoxItem("542334","西藏自治区亚东县","");
array_3_290[14]=new ListBoxItem("542335","西藏自治区吉隆县","");
array_3_290[15]=new ListBoxItem("542336","西藏自治区聂拉木县","");
array_3_290[16]=new ListBoxItem("542337","西藏自治区萨嘎县","");
array_3_290[17]=new ListBoxItem("542338","西藏自治区岗巴县","");
map.put(new Entry("542300",array_3_290));

var array_3_291=new Array();
array_3_291[0]=new ListBoxItem("542421","西藏自治区那曲县","");
array_3_291[1]=new ListBoxItem("542422","西藏自治区嘉黎县","");
array_3_291[2]=new ListBoxItem("542423","西藏自治区比如县","");
array_3_291[3]=new ListBoxItem("542424","西藏自治区聂荣县","");
array_3_291[4]=new ListBoxItem("542425","西藏自治区安多县","");
array_3_291[5]=new ListBoxItem("542426","西藏自治区申扎县","");
array_3_291[6]=new ListBoxItem("542427","西藏自治区索县","");
array_3_291[7]=new ListBoxItem("542428","西藏自治区班戈县","");
array_3_291[8]=new ListBoxItem("542429","西藏自治区巴青县","");
array_3_291[9]=new ListBoxItem("542430","西藏自治区尼玛县","");
map.put(new Entry("542400",array_3_291));

var array_3_292=new Array();
array_3_292[0]=new ListBoxItem("542521","西藏自治区普兰县","");
array_3_292[1]=new ListBoxItem("542522","西藏自治区札达县","");
array_3_292[2]=new ListBoxItem("542523","西藏自治区噶尔县","");
array_3_292[3]=new ListBoxItem("542524","西藏自治区日土县","");
array_3_292[4]=new ListBoxItem("542525","西藏自治区革吉县","");
array_3_292[5]=new ListBoxItem("542526","西藏自治区改则县","");
array_3_292[6]=new ListBoxItem("542527","西藏自治区措勤县","");
map.put(new Entry("542500",array_3_292));

var array_3_293=new Array();
array_3_293[0]=new ListBoxItem("542621","西藏自治区林芝县","");
array_3_293[1]=new ListBoxItem("542622","西藏自治区工布江达县","");
array_3_293[2]=new ListBoxItem("542623","西藏自治区米林县","");
array_3_293[3]=new ListBoxItem("542624","西藏自治区墨脱县","");
array_3_293[4]=new ListBoxItem("542625","西藏自治区波密县","");
array_3_293[5]=new ListBoxItem("542626","西藏自治区察隅县","");
array_3_293[6]=new ListBoxItem("542627","西藏自治区朗县","");
map.put(new Entry("542600",array_3_293));

var array_3_294=new Array();
array_3_294[0]=new ListBoxItem("610101","陕西省西安市市辖区","");
array_3_294[1]=new ListBoxItem("610102","陕西省西安市新城区","");
array_3_294[2]=new ListBoxItem("610103","陕西省西安市碑林区","");
array_3_294[3]=new ListBoxItem("610104","陕西省西安市莲湖区","");
array_3_294[4]=new ListBoxItem("610111","陕西省西安市灞桥区","");
array_3_294[5]=new ListBoxItem("610112","陕西省西安市未央区","");
array_3_294[6]=new ListBoxItem("610113","陕西省西安市雁塔区","");
array_3_294[7]=new ListBoxItem("610114","陕西省西安市阎良区","");
array_3_294[8]=new ListBoxItem("610115","陕西省西安市临潼区","");
array_3_294[9]=new ListBoxItem("610116","陕西省西安市长安区","");
array_3_294[10]=new ListBoxItem("610122","陕西省蓝田县","");
array_3_294[11]=new ListBoxItem("610124","陕西省周至县","");
array_3_294[12]=new ListBoxItem("610125","陕西省户县","");
array_3_294[13]=new ListBoxItem("610126","陕西省高陵县","");
map.put(new Entry("610100",array_3_294));

var array_3_295=new Array();
array_3_295[0]=new ListBoxItem("610201","陕西省铜川市市辖区","");
array_3_295[1]=new ListBoxItem("610202","陕西省铜川市王益区","");
array_3_295[2]=new ListBoxItem("610203","陕西省铜川市印台区","");
array_3_295[3]=new ListBoxItem("610204","陕西省铜川市耀州区","");
array_3_295[4]=new ListBoxItem("610222","陕西省宜君县","");
map.put(new Entry("610200",array_3_295));

var array_3_296=new Array();
array_3_296[0]=new ListBoxItem("610301","陕西省宝鸡市市辖区","");
array_3_296[1]=new ListBoxItem("610302","陕西省宝鸡市渭滨区","");
array_3_296[2]=new ListBoxItem("610303","陕西省宝鸡市金台区","");
array_3_296[3]=new ListBoxItem("610304","陕西省宝鸡市陈仓区","");
array_3_296[4]=new ListBoxItem("610322","陕西省凤翔县","");
array_3_296[5]=new ListBoxItem("610323","陕西省岐山县","");
array_3_296[6]=new ListBoxItem("610324","陕西省扶风县","");
array_3_296[7]=new ListBoxItem("610326","陕西省眉县","");
array_3_296[8]=new ListBoxItem("610327","陕西省陇县","");
array_3_296[9]=new ListBoxItem("610328","陕西省千阳县","");
array_3_296[10]=new ListBoxItem("610329","陕西省麟游县","");
array_3_296[11]=new ListBoxItem("610330","陕西省凤县","");
array_3_296[12]=new ListBoxItem("610331","陕西省太白县","");
map.put(new Entry("610300",array_3_296));

var array_3_297=new Array();
array_3_297[0]=new ListBoxItem("610401","陕西省咸阳市市辖区","");
array_3_297[1]=new ListBoxItem("610402","陕西省咸阳市秦都区","");
array_3_297[2]=new ListBoxItem("610403","陕西省咸阳市杨凌区","");
array_3_297[3]=new ListBoxItem("610404","陕西省咸阳市渭城区","");
array_3_297[4]=new ListBoxItem("610422","陕西省三原县","");
array_3_297[5]=new ListBoxItem("610423","陕西省泾阳县","");
array_3_297[6]=new ListBoxItem("610424","陕西省乾县","");
array_3_297[7]=new ListBoxItem("610425","陕西省礼泉县","");
array_3_297[8]=new ListBoxItem("610426","陕西省永寿县","");
array_3_297[9]=new ListBoxItem("610427","陕西省彬县","");
array_3_297[10]=new ListBoxItem("610428","陕西省长武县","");
array_3_297[11]=new ListBoxItem("610429","陕西省旬邑县","");
array_3_297[12]=new ListBoxItem("610430","陕西省淳化县","");
array_3_297[13]=new ListBoxItem("610431","陕西省武功县","");
array_3_297[14]=new ListBoxItem("610481","陕西省兴平市","");
map.put(new Entry("610400",array_3_297));

var array_3_298=new Array();
array_3_298[0]=new ListBoxItem("610501","陕西省渭南市市辖区","");
array_3_298[1]=new ListBoxItem("610502","陕西省渭南市临渭区","");
array_3_298[2]=new ListBoxItem("610521","陕西省华县","");
array_3_298[3]=new ListBoxItem("610522","陕西省潼关县","");
array_3_298[4]=new ListBoxItem("610523","陕西省大荔县","");
array_3_298[5]=new ListBoxItem("610524","陕西省合阳县","");
array_3_298[6]=new ListBoxItem("610525","陕西省澄城县","");
array_3_298[7]=new ListBoxItem("610526","陕西省蒲城县","");
array_3_298[8]=new ListBoxItem("610527","陕西省白水县","");
array_3_298[9]=new ListBoxItem("610528","陕西省富平县","");
array_3_298[10]=new ListBoxItem("610581","陕西省韩城市","");
array_3_298[11]=new ListBoxItem("610582","陕西省华阴市","");
map.put(new Entry("610500",array_3_298));

var array_3_299=new Array();
array_3_299[0]=new ListBoxItem("610601","陕西省延安市市辖区","");
array_3_299[1]=new ListBoxItem("610602","陕西省延安市宝塔区","");
array_3_299[2]=new ListBoxItem("610621","陕西省延长县","");
array_3_299[3]=new ListBoxItem("610622","陕西省延川县","");
array_3_299[4]=new ListBoxItem("610623","陕西省子长县","");
array_3_299[5]=new ListBoxItem("610624","陕西省安塞县","");
array_3_299[6]=new ListBoxItem("610625","陕西省志丹县","");
array_3_299[7]=new ListBoxItem("610626","陕西省吴旗县","");
array_3_299[8]=new ListBoxItem("610627","陕西省甘泉县","");
array_3_299[9]=new ListBoxItem("610628","陕西省富县","");
array_3_299[10]=new ListBoxItem("610629","陕西省洛川县","");
array_3_299[11]=new ListBoxItem("610630","陕西省宜川县","");
array_3_299[12]=new ListBoxItem("610631","陕西省黄龙县","");
array_3_299[13]=new ListBoxItem("610632","陕西省黄陵县","");
map.put(new Entry("610600",array_3_299));

var array_3_300=new Array();
array_3_300[0]=new ListBoxItem("610701","陕西省汉中市市辖区","");
array_3_300[1]=new ListBoxItem("610702","陕西省汉中市汉台区","");
array_3_300[2]=new ListBoxItem("610721","陕西省南郑县","");
array_3_300[3]=new ListBoxItem("610722","陕西省城固县","");
array_3_300[4]=new ListBoxItem("610723","陕西省洋县","");
array_3_300[5]=new ListBoxItem("610724","陕西省西乡县","");
array_3_300[6]=new ListBoxItem("610725","陕西省勉县","");
array_3_300[7]=new ListBoxItem("610726","陕西省宁强县","");
array_3_300[8]=new ListBoxItem("610727","陕西省略阳县","");
array_3_300[9]=new ListBoxItem("610728","陕西省镇巴县","");
array_3_300[10]=new ListBoxItem("610729","陕西省留坝县","");
array_3_300[11]=new ListBoxItem("610730","陕西省佛坪县","");
map.put(new Entry("610700",array_3_300));

var array_3_301=new Array();
array_3_301[0]=new ListBoxItem("610801","陕西省榆林市市辖区","");
array_3_301[1]=new ListBoxItem("610802","陕西省榆林市榆阳区","");
array_3_301[2]=new ListBoxItem("610821","陕西省神木县","");
array_3_301[3]=new ListBoxItem("610822","陕西省府谷县","");
array_3_301[4]=new ListBoxItem("610823","陕西省横山县","");
array_3_301[5]=new ListBoxItem("610824","陕西省靖边县","");
array_3_301[6]=new ListBoxItem("610825","陕西省定边县","");
array_3_301[7]=new ListBoxItem("610826","陕西省绥德县","");
array_3_301[8]=new ListBoxItem("610827","陕西省米脂县","");
array_3_301[9]=new ListBoxItem("610828","陕西省佳县","");
array_3_301[10]=new ListBoxItem("610829","陕西省吴堡县","");
array_3_301[11]=new ListBoxItem("610830","陕西省清涧县","");
array_3_301[12]=new ListBoxItem("610831","陕西省子洲县","");
map.put(new Entry("610800",array_3_301));

var array_3_302=new Array();
array_3_302[0]=new ListBoxItem("610901","陕西省安康市市辖区","");
array_3_302[1]=new ListBoxItem("610902","陕西省安康市汉滨区","");
array_3_302[2]=new ListBoxItem("610921","陕西省汉阴县","");
array_3_302[3]=new ListBoxItem("610922","陕西省石泉县","");
array_3_302[4]=new ListBoxItem("610923","陕西省宁陕县","");
array_3_302[5]=new ListBoxItem("610924","陕西省紫阳县","");
array_3_302[6]=new ListBoxItem("610925","陕西省岚皋县","");
array_3_302[7]=new ListBoxItem("610926","陕西省平利县","");
array_3_302[8]=new ListBoxItem("610927","陕西省镇坪县","");
array_3_302[9]=new ListBoxItem("610928","陕西省旬阳县","");
array_3_302[10]=new ListBoxItem("610929","陕西省白河县","");
map.put(new Entry("610900",array_3_302));

var array_3_303=new Array();
array_3_303[0]=new ListBoxItem("611001","陕西省商洛市市辖区","");
array_3_303[1]=new ListBoxItem("611002","陕西省商洛市商州区","");
array_3_303[2]=new ListBoxItem("611021","陕西省洛南县","");
array_3_303[3]=new ListBoxItem("611022","陕西省丹凤县","");
array_3_303[4]=new ListBoxItem("611023","陕西省商南县","");
array_3_303[5]=new ListBoxItem("611024","陕西省山阳县","");
array_3_303[6]=new ListBoxItem("611025","陕西省镇安县","");
array_3_303[7]=new ListBoxItem("611026","陕西省柞水县","");
map.put(new Entry("611000",array_3_303));

var array_3_304=new Array();
array_3_304[0]=new ListBoxItem("620101","甘肃省兰州市市辖区","");
array_3_304[1]=new ListBoxItem("620102","甘肃省兰州市城关区","");
array_3_304[2]=new ListBoxItem("620103","甘肃省兰州市七里河区","");
array_3_304[3]=new ListBoxItem("620104","甘肃省兰州市西固区","");
array_3_304[4]=new ListBoxItem("620105","甘肃省兰州市安宁区","");
array_3_304[5]=new ListBoxItem("620111","甘肃省兰州市红古区","");
array_3_304[6]=new ListBoxItem("620121","甘肃省永登县","");
array_3_304[7]=new ListBoxItem("620122","甘肃省皋兰县","");
array_3_304[8]=new ListBoxItem("620123","甘肃省榆中县","");
map.put(new Entry("620100",array_3_304));

var array_3_305=new Array();
array_3_305[0]=new ListBoxItem("620201","甘肃省嘉峪关市市辖区","");
map.put(new Entry("620200",array_3_305));

var array_3_306=new Array();
array_3_306[0]=new ListBoxItem("620301","甘肃省金昌市市辖区","");
array_3_306[1]=new ListBoxItem("620302","甘肃省金昌市金川区","");
array_3_306[2]=new ListBoxItem("620321","甘肃省永昌县","");
map.put(new Entry("620300",array_3_306));

var array_3_307=new Array();
array_3_307[0]=new ListBoxItem("620401","甘肃省白银市市辖区","");
array_3_307[1]=new ListBoxItem("620402","甘肃省白银市白银区","");
array_3_307[2]=new ListBoxItem("620403","甘肃省白银市平川区","");
array_3_307[3]=new ListBoxItem("620421","甘肃省靖远县","");
array_3_307[4]=new ListBoxItem("620422","甘肃省会宁县","");
array_3_307[5]=new ListBoxItem("620423","甘肃省景泰县","");
map.put(new Entry("620400",array_3_307));

var array_3_308=new Array();
array_3_308[0]=new ListBoxItem("620501","甘肃省天水市市辖区","");
array_3_308[1]=new ListBoxItem("620502","甘肃省天水市秦城区","");
array_3_308[2]=new ListBoxItem("620503","甘肃省天水市北道区","");
array_3_308[3]=new ListBoxItem("620521","甘肃省清水县","");
array_3_308[4]=new ListBoxItem("620522","甘肃省秦安县","");
array_3_308[5]=new ListBoxItem("620523","甘肃省甘谷县","");
array_3_308[6]=new ListBoxItem("620524","甘肃省武山县","");
array_3_308[7]=new ListBoxItem("620525","甘肃省张家川回族自治县","");
map.put(new Entry("620500",array_3_308));

var array_3_309=new Array();
array_3_309[0]=new ListBoxItem("620601","甘肃省武威市市辖区","");
array_3_309[1]=new ListBoxItem("620602","甘肃省武威市凉州区","");
array_3_309[2]=new ListBoxItem("620621","甘肃省民勤县","");
array_3_309[3]=new ListBoxItem("620622","甘肃省古浪县","");
array_3_309[4]=new ListBoxItem("620623","甘肃省天祝藏族自治县","");
map.put(new Entry("620600",array_3_309));

var array_3_310=new Array();
array_3_310[0]=new ListBoxItem("620701","甘肃省张掖市市辖区","");
array_3_310[1]=new ListBoxItem("620702","甘肃省张掖市甘州区","");
array_3_310[2]=new ListBoxItem("620721","甘肃省肃南裕固族自治县","");
array_3_310[3]=new ListBoxItem("620722","甘肃省民乐县","");
array_3_310[4]=new ListBoxItem("620723","甘肃省临泽县","");
array_3_310[5]=new ListBoxItem("620724","甘肃省高台县","");
array_3_310[6]=new ListBoxItem("620725","甘肃省山丹县","");
map.put(new Entry("620700",array_3_310));

var array_3_311=new Array();
array_3_311[0]=new ListBoxItem("620801","甘肃省平凉市市辖区","");
array_3_311[1]=new ListBoxItem("620802","甘肃省平凉市崆峒区","");
array_3_311[2]=new ListBoxItem("620821","甘肃省泾川县","");
array_3_311[3]=new ListBoxItem("620822","甘肃省灵台县","");
array_3_311[4]=new ListBoxItem("620823","甘肃省崇信县","");
array_3_311[5]=new ListBoxItem("620824","甘肃省华亭县","");
array_3_311[6]=new ListBoxItem("620825","甘肃省庄浪县","");
array_3_311[7]=new ListBoxItem("620826","甘肃省静宁县","");
map.put(new Entry("620800",array_3_311));

var array_3_312=new Array();
array_3_312[0]=new ListBoxItem("620901","甘肃省酒泉市市辖区","");
array_3_312[1]=new ListBoxItem("620902","甘肃省酒泉市肃州区","");
array_3_312[2]=new ListBoxItem("620921","甘肃省金塔县","");
array_3_312[3]=new ListBoxItem("620922","甘肃省安西县","");
array_3_312[4]=new ListBoxItem("620923","甘肃省肃北蒙古族自治县","");
array_3_312[5]=new ListBoxItem("620924","甘肃省阿克塞哈萨克族自治县","");
array_3_312[6]=new ListBoxItem("620981","甘肃省玉门市","");
array_3_312[7]=new ListBoxItem("620982","甘肃省敦煌市","");
map.put(new Entry("620900",array_3_312));

var array_3_313=new Array();
array_3_313[0]=new ListBoxItem("621001","甘肃省庆阳市市辖区","");
array_3_313[1]=new ListBoxItem("621002","甘肃省庆阳市西峰区","");
array_3_313[2]=new ListBoxItem("621021","甘肃省庆城县","");
array_3_313[3]=new ListBoxItem("621022","甘肃省环县","");
array_3_313[4]=new ListBoxItem("621023","甘肃省华池县","");
array_3_313[5]=new ListBoxItem("621024","甘肃省合水县","");
array_3_313[6]=new ListBoxItem("621025","甘肃省正宁县","");
array_3_313[7]=new ListBoxItem("621026","甘肃省宁县","");
array_3_313[8]=new ListBoxItem("621027","甘肃省镇原县","");
map.put(new Entry("621000",array_3_313));

var array_3_314=new Array();
array_3_314[0]=new ListBoxItem("621101","甘肃省定西市市辖区","");
array_3_314[1]=new ListBoxItem("621102","甘肃省定西市安定区","");
array_3_314[2]=new ListBoxItem("621121","甘肃省通渭县","");
array_3_314[3]=new ListBoxItem("621122","甘肃省陇西县","");
array_3_314[4]=new ListBoxItem("621123","甘肃省渭源县","");
array_3_314[5]=new ListBoxItem("621124","甘肃省临洮县","");
array_3_314[6]=new ListBoxItem("621125","甘肃省漳县","");
array_3_314[7]=new ListBoxItem("621126","甘肃省岷县","");
map.put(new Entry("621100",array_3_314));

var array_3_315=new Array();
array_3_315[0]=new ListBoxItem("622621","甘肃省武都县","");
array_3_315[1]=new ListBoxItem("622623","甘肃省宕昌县","");
array_3_315[2]=new ListBoxItem("622624","甘肃省成县","");
array_3_315[3]=new ListBoxItem("622625","甘肃省康县","");
array_3_315[4]=new ListBoxItem("622626","甘肃省文县","");
array_3_315[5]=new ListBoxItem("622627","甘肃省西和县","");
array_3_315[6]=new ListBoxItem("622628","甘肃省礼县","");
array_3_315[7]=new ListBoxItem("622629","甘肃省两当县","");
array_3_315[8]=new ListBoxItem("622630","甘肃省徽县","");
map.put(new Entry("622600",array_3_315));

var array_3_316=new Array();
array_3_316[0]=new ListBoxItem("622901","甘肃省临夏市","");
array_3_316[1]=new ListBoxItem("622921","甘肃省临夏县","");
array_3_316[2]=new ListBoxItem("622922","甘肃省康乐县","");
array_3_316[3]=new ListBoxItem("622923","甘肃省永靖县","");
array_3_316[4]=new ListBoxItem("622924","甘肃省广河县","");
array_3_316[5]=new ListBoxItem("622925","甘肃省和政县","");
array_3_316[6]=new ListBoxItem("622926","甘肃省东乡族自治县","");
array_3_316[7]=new ListBoxItem("622927","甘肃省积石山保安族东乡族撒拉族自治县","");
map.put(new Entry("622900",array_3_316));

var array_3_317=new Array();
array_3_317[0]=new ListBoxItem("623001","甘肃省合作市","");
array_3_317[1]=new ListBoxItem("623021","甘肃省临潭县","");
array_3_317[2]=new ListBoxItem("623022","甘肃省卓尼县","");
array_3_317[3]=new ListBoxItem("623023","甘肃省舟曲县","");
array_3_317[4]=new ListBoxItem("623024","甘肃省迭部县","");
array_3_317[5]=new ListBoxItem("623025","甘肃省玛曲县","");
array_3_317[6]=new ListBoxItem("623026","甘肃省碌曲县","");
array_3_317[7]=new ListBoxItem("623027","甘肃省夏河县","");
map.put(new Entry("623000",array_3_317));

var array_3_318=new Array();
array_3_318[0]=new ListBoxItem("630101","青海省西宁市市辖区","");
array_3_318[1]=new ListBoxItem("630102","青海省西宁市城东区","");
array_3_318[2]=new ListBoxItem("630103","青海省西宁市城中区","");
array_3_318[3]=new ListBoxItem("630104","青海省西宁市城西区","");
array_3_318[4]=new ListBoxItem("630105","青海省西宁市城北区","");
array_3_318[5]=new ListBoxItem("630121","青海省大通回族土族自治县","");
array_3_318[6]=new ListBoxItem("630122","青海省湟中县","");
array_3_318[7]=new ListBoxItem("630123","青海省湟源县","");
map.put(new Entry("630100",array_3_318));

var array_3_319=new Array();
array_3_319[0]=new ListBoxItem("632121","青海省平安县","");
array_3_319[1]=new ListBoxItem("632122","青海省民和回族土族自治县","");
array_3_319[2]=new ListBoxItem("632123","青海省乐都县","");
array_3_319[3]=new ListBoxItem("632126","青海省互助土族自治县","");
array_3_319[4]=new ListBoxItem("632127","青海省化隆回族自治县","");
array_3_319[5]=new ListBoxItem("632128","青海省循化撒拉族自治县","");
map.put(new Entry("632100",array_3_319));

var array_3_320=new Array();
array_3_320[0]=new ListBoxItem("632221","青海省门源回族自治县","");
array_3_320[1]=new ListBoxItem("632222","青海省祁连县","");
array_3_320[2]=new ListBoxItem("632223","青海省海晏县","");
array_3_320[3]=new ListBoxItem("632224","青海省刚察县","");
map.put(new Entry("632200",array_3_320));

var array_3_321=new Array();
array_3_321[0]=new ListBoxItem("632321","青海省同仁县","");
array_3_321[1]=new ListBoxItem("632322","青海省尖扎县","");
array_3_321[2]=new ListBoxItem("632323","青海省泽库县","");
array_3_321[3]=new ListBoxItem("632324","青海省河南蒙古族自治县","");
map.put(new Entry("632300",array_3_321));

var array_3_322=new Array();
array_3_322[0]=new ListBoxItem("632521","青海省共和县","");
array_3_322[1]=new ListBoxItem("632522","青海省同德县","");
array_3_322[2]=new ListBoxItem("632523","青海省贵德县","");
array_3_322[3]=new ListBoxItem("632524","青海省兴海县","");
array_3_322[4]=new ListBoxItem("632525","青海省贵南县","");
map.put(new Entry("632500",array_3_322));

var array_3_323=new Array();
array_3_323[0]=new ListBoxItem("632621","青海省玛沁县","");
array_3_323[1]=new ListBoxItem("632622","青海省班玛县","");
array_3_323[2]=new ListBoxItem("632623","青海省甘德县","");
array_3_323[3]=new ListBoxItem("632624","青海省达日县","");
array_3_323[4]=new ListBoxItem("632625","青海省久治县","");
array_3_323[5]=new ListBoxItem("632626","青海省玛多县","");
map.put(new Entry("632600",array_3_323));

var array_3_324=new Array();
array_3_324[0]=new ListBoxItem("632721","青海省玉树县","");
array_3_324[1]=new ListBoxItem("632722","青海省杂多县","");
array_3_324[2]=new ListBoxItem("632723","青海省称多县","");
array_3_324[3]=new ListBoxItem("632724","青海省治多县","");
array_3_324[4]=new ListBoxItem("632725","青海省囊谦县","");
array_3_324[5]=new ListBoxItem("632726","青海省曲麻莱县","");
map.put(new Entry("632700",array_3_324));

var array_3_325=new Array();
array_3_325[0]=new ListBoxItem("632801","青海省格尔木市","");
array_3_325[1]=new ListBoxItem("632802","青海省德令哈市","");
array_3_325[2]=new ListBoxItem("632821","青海省乌兰县","");
array_3_325[3]=new ListBoxItem("632822","青海省都兰县","");
array_3_325[4]=new ListBoxItem("632823","青海省天峻县","");
map.put(new Entry("632800",array_3_325));

var array_3_326=new Array();
array_3_326[0]=new ListBoxItem("640101","宁夏回族自治区银川市市辖区","");
array_3_326[1]=new ListBoxItem("640104","宁夏回族自治区银川市兴庆区","");
array_3_326[2]=new ListBoxItem("640105","宁夏回族自治区银川市西夏区","");
array_3_326[3]=new ListBoxItem("640106","宁夏回族自治区银川市金凤区","");
array_3_326[4]=new ListBoxItem("640121","宁夏回族自治区永宁县","");
array_3_326[5]=new ListBoxItem("640122","宁夏回族自治区贺兰县","");
array_3_326[6]=new ListBoxItem("640181","宁夏回族自治区灵武市","");
map.put(new Entry("640100",array_3_326));

var array_3_327=new Array();
array_3_327[0]=new ListBoxItem("640201","宁夏回族自治区石嘴山市市辖区","");
array_3_327[1]=new ListBoxItem("640202","宁夏回族自治区石嘴山市大武口区","");
array_3_327[2]=new ListBoxItem("640205","宁夏回族自治区石嘴山市惠农区","");
array_3_327[3]=new ListBoxItem("640221","宁夏回族自治区平罗县","");
map.put(new Entry("640200",array_3_327));

var array_3_328=new Array();
array_3_328[0]=new ListBoxItem("640301","宁夏回族自治区吴忠市市辖区","");
array_3_328[1]=new ListBoxItem("640302","宁夏回族自治区吴忠市利通区","");
array_3_328[2]=new ListBoxItem("640323","宁夏回族自治区盐池县","");
array_3_328[3]=new ListBoxItem("640324","宁夏回族自治区同心县","");
array_3_328[4]=new ListBoxItem("640381","宁夏回族自治区青铜峡市","");
map.put(new Entry("640300",array_3_328));

var array_3_329=new Array();
array_3_329[0]=new ListBoxItem("640401","宁夏回族自治区固原市市辖区","");
array_3_329[1]=new ListBoxItem("640402","宁夏回族自治区固原市原州区","");
array_3_329[2]=new ListBoxItem("640422","宁夏回族自治区西吉县","");
array_3_329[3]=new ListBoxItem("640423","宁夏回族自治区隆德县","");
array_3_329[4]=new ListBoxItem("640424","宁夏回族自治区泾源县","");
array_3_329[5]=new ListBoxItem("640425","宁夏回族自治区彭阳县","");
map.put(new Entry("640400",array_3_329));

var array_3_330=new Array();
array_3_330[0]=new ListBoxItem("640501","宁夏回族自治区中卫市市辖区","");
array_3_330[1]=new ListBoxItem("640502","宁夏回族自治区中卫市沙坡头区","");
array_3_330[2]=new ListBoxItem("640521","宁夏回族自治区中宁县","");
array_3_330[3]=new ListBoxItem("640522","宁夏回族自治区海原县","");
map.put(new Entry("640500",array_3_330));

var array_3_331=new Array();
array_3_331[0]=new ListBoxItem("650101","新疆维吾尔自治区乌鲁木齐市市辖区","");
array_3_331[1]=new ListBoxItem("650102","新疆维吾尔自治区乌鲁木齐市天山区","");
array_3_331[2]=new ListBoxItem("650103","新疆维吾尔自治区乌鲁木齐市沙依巴克区","");
array_3_331[3]=new ListBoxItem("650104","新疆维吾尔自治区乌鲁木齐市新市区","");
array_3_331[4]=new ListBoxItem("650105","新疆维吾尔自治区乌鲁木齐市水磨沟区","");
array_3_331[5]=new ListBoxItem("650106","新疆维吾尔自治区乌鲁木齐市头屯河区","");
array_3_331[6]=new ListBoxItem("650107","新疆维吾尔自治区乌鲁木齐市达坂城区","");
array_3_331[7]=new ListBoxItem("650108","新疆维吾尔自治区乌鲁木齐市东山区","");
array_3_331[8]=new ListBoxItem("650121","新疆维吾尔自治区乌鲁木齐县","");
map.put(new Entry("650100",array_3_331));

var array_3_332=new Array();
array_3_332[0]=new ListBoxItem("650201","新疆维吾尔自治区克拉玛依市市辖区","");
array_3_332[1]=new ListBoxItem("650202","新疆维吾尔自治区克拉玛依市独山子区","");
array_3_332[2]=new ListBoxItem("650203","新疆维吾尔自治区克拉玛依市克拉玛依区","");
array_3_332[3]=new ListBoxItem("650204","新疆维吾尔自治区克拉玛依市白碱滩区","");
array_3_332[4]=new ListBoxItem("650205","新疆维吾尔自治区克拉玛依市乌尔禾区","");
map.put(new Entry("650200",array_3_332));

var array_3_333=new Array();
array_3_333[0]=new ListBoxItem("652101","新疆维吾尔自治区吐鲁番市","");
array_3_333[1]=new ListBoxItem("652122","新疆维吾尔自治区鄯善县","");
array_3_333[2]=new ListBoxItem("652123","新疆维吾尔自治区托克逊县","");
map.put(new Entry("652100",array_3_333));

var array_3_334=new Array();
array_3_334[0]=new ListBoxItem("652201","新疆维吾尔自治区哈密市","");
array_3_334[1]=new ListBoxItem("652222","新疆维吾尔自治区巴里坤哈萨克自治县","");
array_3_334[2]=new ListBoxItem("652223","新疆维吾尔自治区伊吾县","");
map.put(new Entry("652200",array_3_334));

var array_3_335=new Array();
array_3_335[0]=new ListBoxItem("652301","新疆维吾尔自治区昌吉市","");
array_3_335[1]=new ListBoxItem("652302","新疆维吾尔自治区阜康市","");
array_3_335[2]=new ListBoxItem("652303","新疆维吾尔自治区米泉市","");
array_3_335[3]=new ListBoxItem("652323","新疆维吾尔自治区呼图壁县","");
array_3_335[4]=new ListBoxItem("652324","新疆维吾尔自治区玛纳斯县","");
array_3_335[5]=new ListBoxItem("652325","新疆维吾尔自治区奇台县","");
array_3_335[6]=new ListBoxItem("652327","新疆维吾尔自治区吉木萨尔县","");
array_3_335[7]=new ListBoxItem("652328","新疆维吾尔自治区木垒哈萨克自治县","");
map.put(new Entry("652300",array_3_335));

var array_3_336=new Array();
array_3_336[0]=new ListBoxItem("652701","新疆维吾尔自治区博乐市","");
array_3_336[1]=new ListBoxItem("652722","新疆维吾尔自治区精河县","");
array_3_336[2]=new ListBoxItem("652723","新疆维吾尔自治区温泉县","");
map.put(new Entry("652700",array_3_336));

var array_3_337=new Array();
array_3_337[0]=new ListBoxItem("652801","新疆维吾尔自治区库尔勒市","");
array_3_337[1]=new ListBoxItem("652822","新疆维吾尔自治区轮台县","");
array_3_337[2]=new ListBoxItem("652823","新疆维吾尔自治区尉犁县","");
array_3_337[3]=new ListBoxItem("652824","新疆维吾尔自治区若羌县","");
array_3_337[4]=new ListBoxItem("652825","新疆维吾尔自治区且末县","");
array_3_337[5]=new ListBoxItem("652826","新疆维吾尔自治区焉耆回族自治县","");
array_3_337[6]=new ListBoxItem("652827","新疆维吾尔自治区和静县","");
array_3_337[7]=new ListBoxItem("652828","新疆维吾尔自治区和硕县","");
array_3_337[8]=new ListBoxItem("652829","新疆维吾尔自治区博湖县","");
map.put(new Entry("652800",array_3_337));

var array_3_338=new Array();
array_3_338[0]=new ListBoxItem("652901","新疆维吾尔自治区阿克苏市","");
array_3_338[1]=new ListBoxItem("652922","新疆维吾尔自治区温宿县","");
array_3_338[2]=new ListBoxItem("652923","新疆维吾尔自治区库车县","");
array_3_338[3]=new ListBoxItem("652924","新疆维吾尔自治区沙雅县","");
array_3_338[4]=new ListBoxItem("652925","新疆维吾尔自治区新和县","");
array_3_338[5]=new ListBoxItem("652926","新疆维吾尔自治区拜城县","");
array_3_338[6]=new ListBoxItem("652927","新疆维吾尔自治区乌什县","");
array_3_338[7]=new ListBoxItem("652928","新疆维吾尔自治区阿瓦提县","");
array_3_338[8]=new ListBoxItem("652929","新疆维吾尔自治区柯坪县","");
map.put(new Entry("652900",array_3_338));

var array_3_339=new Array();
array_3_339[0]=new ListBoxItem("653001","新疆维吾尔自治区阿图什市","");
array_3_339[1]=new ListBoxItem("653022","新疆维吾尔自治区阿克陶县","");
array_3_339[2]=new ListBoxItem("653023","新疆维吾尔自治区阿合奇县","");
array_3_339[3]=new ListBoxItem("653024","新疆维吾尔自治区乌恰县","");
map.put(new Entry("653000",array_3_339));

var array_3_340=new Array();
array_3_340[0]=new ListBoxItem("653101","新疆维吾尔自治区喀什市","");
array_3_340[1]=new ListBoxItem("653121","新疆维吾尔自治区疏附县","");
array_3_340[2]=new ListBoxItem("653122","新疆维吾尔自治区疏勒县","");
array_3_340[3]=new ListBoxItem("653123","新疆维吾尔自治区英吉沙县","");
array_3_340[4]=new ListBoxItem("653124","新疆维吾尔自治区泽普县","");
array_3_340[5]=new ListBoxItem("653125","新疆维吾尔自治区莎车县","");
array_3_340[6]=new ListBoxItem("653126","新疆维吾尔自治区叶城县","");
array_3_340[7]=new ListBoxItem("653127","新疆维吾尔自治区麦盖提县","");
array_3_340[8]=new ListBoxItem("653128","新疆维吾尔自治区岳普湖县","");
array_3_340[9]=new ListBoxItem("653129","新疆维吾尔自治区伽师县","");
array_3_340[10]=new ListBoxItem("653130","新疆维吾尔自治区巴楚县","");
array_3_340[11]=new ListBoxItem("653131","新疆维吾尔自治区塔什库尔干塔吉克自治县","");
map.put(new Entry("653100",array_3_340));

var array_3_341=new Array();
array_3_341[0]=new ListBoxItem("653201","新疆维吾尔自治区和田市","");
array_3_341[1]=new ListBoxItem("653221","新疆维吾尔自治区和田县","");
array_3_341[2]=new ListBoxItem("653222","新疆维吾尔自治区墨玉县","");
array_3_341[3]=new ListBoxItem("653223","新疆维吾尔自治区皮山县","");
array_3_341[4]=new ListBoxItem("653224","新疆维吾尔自治区洛浦县","");
array_3_341[5]=new ListBoxItem("653225","新疆维吾尔自治区策勒县","");
array_3_341[6]=new ListBoxItem("653226","新疆维吾尔自治区于田县","");
array_3_341[7]=new ListBoxItem("653227","新疆维吾尔自治区民丰县","");
map.put(new Entry("653200",array_3_341));

var array_3_342=new Array();
array_3_342[0]=new ListBoxItem("654002","新疆维吾尔自治区伊宁市","");
array_3_342[1]=new ListBoxItem("654003","新疆维吾尔自治区奎屯市","");
array_3_342[2]=new ListBoxItem("654021","新疆维吾尔自治区伊宁县","");
array_3_342[3]=new ListBoxItem("654022","新疆维吾尔自治区察布查尔锡伯自治县","");
array_3_342[4]=new ListBoxItem("654023","新疆维吾尔自治区霍城县","");
array_3_342[5]=new ListBoxItem("654024","新疆维吾尔自治区巩留县","");
array_3_342[6]=new ListBoxItem("654025","新疆维吾尔自治区新源县","");
array_3_342[7]=new ListBoxItem("654026","新疆维吾尔自治区昭苏县","");
array_3_342[8]=new ListBoxItem("654027","新疆维吾尔自治区特克斯县","");
array_3_342[9]=new ListBoxItem("654028","新疆维吾尔自治区尼勒克县","");
map.put(new Entry("654000",array_3_342));

var array_3_343=new Array();
array_3_343[0]=new ListBoxItem("654201","新疆维吾尔自治区塔城市","");
array_3_343[1]=new ListBoxItem("654202","新疆维吾尔自治区乌苏市","");
array_3_343[2]=new ListBoxItem("654221","新疆维吾尔自治区额敏县","");
array_3_343[3]=new ListBoxItem("654223","新疆维吾尔自治区沙湾县","");
array_3_343[4]=new ListBoxItem("654224","新疆维吾尔自治区托里县","");
array_3_343[5]=new ListBoxItem("654225","新疆维吾尔自治区裕民县","");
array_3_343[6]=new ListBoxItem("654226","新疆维吾尔自治区和布克赛尔蒙古自治县","");
map.put(new Entry("654200",array_3_343));

var array_3_344=new Array();
array_3_344[0]=new ListBoxItem("654301","新疆维吾尔自治区阿勒泰市","");
array_3_344[1]=new ListBoxItem("654321","新疆维吾尔自治区布尔津县","");
array_3_344[2]=new ListBoxItem("654322","新疆维吾尔自治区富蕴县","");
array_3_344[3]=new ListBoxItem("654323","新疆维吾尔自治区福海县","");
array_3_344[4]=new ListBoxItem("654324","新疆维吾尔自治区哈巴河县","");
array_3_344[5]=new ListBoxItem("654325","新疆维吾尔自治区青河县","");
array_3_344[6]=new ListBoxItem("654326","新疆维吾尔自治区吉木乃县","");
map.put(new Entry("654300",array_3_344));

var array_3_345=new Array();
array_3_345[0]=new ListBoxItem("659001","新疆维吾尔自治区石河子市","");
array_3_345[1]=new ListBoxItem("659002","新疆维吾尔自治区阿拉尔市","");
array_3_345[2]=new ListBoxItem("659003","新疆维吾尔自治区图木舒克市","");
array_3_345[3]=new ListBoxItem("659004","新疆维吾尔自治区五家渠市","");
map.put(new Entry("659000",array_3_345));

 

本文地址:http://com.8s8s.com/it/it12151.htm