您的位置:首页 > Web前端 > JavaScript

js地址下拉列表中全职工作

2015-07-04 19:57 507 查看
/*******************************************************************

*输出全国各省辖市下拉列表项writeCitys()

*输出企业性质下拉列表项writeProperity()

*输出工作岗位类别下拉列表项writeJobs()

*输出行业类别下拉列表项writeCalling()

*输出学历下拉列表项writeDegree()

*输出更新时间下拉列表项writeUpdateDate()

*Date:2004-06-28

*******************************************************************/

/**输出全国各省辖市下拉列表项*/

function writeCitys()

{

with(document)

{

write("<option value='0' selected>地区不限</option>");

write("<option value='北京'>北京市</option>");

write("<option value='上海'>上海市</option>");

write("<option value='天津'>天津市</option>");

write("<option value='重庆'>重庆市</option>");

write("<option value='广东'>广东省</option>");

write("<option value='江苏'>江苏省</option>");

write("<option value='浙江'>浙江省</option>");

write("<option value='福建'>福建省</option>");

write("<option value='湖南'>湖南省</option>");

write("<option value='湖北'>湖北省</option>");

write("<option value='山东'>山东省</option>");

write("<option value='辽宁'>辽宁省</option>");

write("<option value='吉林'>吉林省</option>");

write("<option value='云南'>云南省</option>");

write("<option value='四川'>四川省</option>");

write("<option value='安徽'>安徽省</option>");

write("<option value='江西'>江西省</option>");

write("<option value='黑龙江'>黑龙江省</option>");

write("<option value='河北'>河北省</option>");

write("<option value='陕西'>陕西省</option>");

write("<option value='海南'>海南省</option>");

write("<option value='河南'>河南省</option>");

write("<option value='山西'>山西省</option>");

write("<option value='内蒙古'>内蒙古自治区</option>");

write("<option value='广西'>广西壮族自治区</option>");

write("<option value='贵州'>贵州省</option>");

write("<option value='宁夏'>宁夏回族自治区</option>");

write("<option value='青海'>青海省</option>");

write("<option value='新疆'>新疆维吾尔自治区</option>");

write("<option value='西藏'>西藏自治区</option>");

write("<option value='甘肃'>甘肃省</option>");

write("<option value='台湾'>台湾省</option>");

write("<option value='香港'>香港特别行政区</option>");

write("<option value='澳门'>澳门特别行政区</option>");

write("<option value='国外'>国外</option>");

write("<option value='其它'>其它</option>");

}

}

/**输出企业性质下拉列表项*/

function writeProperity()

{

with(document)

{

write("<option value='1'>国有企业</option>");

write("<option value='2'>外资企业</option>");

write("<option value='3'>合资企业</option>");

write("<option value='4'>私营企业</option>");

write("<option value='5'>民营企业</option>");

write("<option value='6'>股份制企业</option>");

write("<option value='7'>集体企业</option>");

write("<option value='8'>集体事业</option>");

write("<option value='9'>乡镇企业</option>");

write("<option value='10'>行政机关</option>");

write("<option value='11'>社会团体</option>");

write("<option value='12'>事业单位</option>");

write("<option value='13'>跨国公司(集团)</option>");

write("<option value='14'>其它</option>");

}

}

/**输出工作岗位类别下拉列表项*/

function writeJobs()

{

with(document)

{

write("<option value='1000'>计算机(IT)类</option>");

write("<option value='1100'>销售类</option>");

write("<option value='4100'>市场营销/公关类</option>");

write("<option value='4200'>客户服务类</option>");

write("<option value='1200'>经营/管理类</option>");

write("<option value='1300'>財务/审(统)计类</option>");

write("<option value='1900'>公司文职类</option>");

write("<option value='3100'>行政/人事类</option>");

write("<option value='3500'>工业/工厂类</option>");

write("<option value='1500'>电子通讯/电气(器)类</option>");

write("<option value='1600'>机械(电)/仪表类</option>");

write("<option value='1400'>金融/保险/证券类</option>");

write("<option value='1800'>房地产/建筑施工类</option>");

write("<option value='2100'>广告(装潢、包装)设计类</option>");

write("<option value='2200'>文体/教育/培训类</option>");

write("<option value='2400'>卫生医疗/美容保健类</option>");

write("<option value='2600'>化工/制药类</option>");

write("<option value='1700'>能源动力类</option>");

write("<option value='2700'>宾馆饭店/餐饮旅游类</option>");

write("<option value='2800'>商店/零售服务类</option>");

write("<option value='3600'>技工/普工类</option>");

write("<option value='3700'>轻工类</option>");

write("<option value='2900'>后勤保障类</option>");

write("<option value='4300'>翻译类</option>");

write("<option value='4400'>物流/贸易/採购类</option>");

write("<option value='4500'>咨询/顾问类限</option>");

write("<option value='4600'>法律专业人员类</option>");

write("<option value='4700'>广播/影视/摄影专业类</option>");

write("<option value='4800'>编辑/发行类</option>");

write("<option value='3000'>其它类</option>");

}

}

/**输出行业类别下拉列表项*/

function writeCalling()

{

with(document)

{

write("<option value='1'>互联网、电子商务</option>");

write("<option value='2'>计算机业(软件、数据库、系统集成)</option>");

write("<option value='3'>计算机业(硬件、网络设备)</option>");

write("<option value='4'>电子、微电子技术</option>");

write("<option value='5'>通讯、电信业</option>");

write("<option value='6'>家电业</option>");

write("<option value='7'>批发零售(百货、超市、购物中心、专卖店…)</option>");

write("<option value='8'>贸易、商务、进出口</option>");

write("<option value='9'>电气</option>");

write("<option value='10'>电力、能源、矿产业</option>");

write("<option value='11'>石油、化工业</option>");

write("<option value='12'>生物project、制药、环保</option>");

write("<option value='13'>机械制造、机电设备、重工业</option>");

write("<option value='14'>汽车、摩托车</option>");

write("<option value='15'>仪器仪表、电工设备</option>");

write("<option value='16'>广告、公关、设计</option>");

//write("<option value='17'>媒体、影视制作、新闻出版</option>"); //合并到18

write("<option value='18'>艺术、文化传播、媒体、影视制作、新闻出版</option>");

write("<option value='19'>高速消费品(食品、饮料、粮油、化妆品、烟酒…)</option>");

write("<option value='20'>纺织品业(服饰、鞋类、家纺用品、皮具…)</option>");

write("<option value='21'>咨询业(顾问、会计师、审计师、法律)</option>");

write("<option value='22'>金融业(投资、保险、证券、银行、基金)</option>");

write("<option value='23'>建筑、房地产、物业管理、装潢</option>");

//write("<option value='24'>餐饮、娱乐、酒店</option>"); //合并到26

write("<option value='25'>运输、物流、快递</option>");

write("<option value='26'>旅游业、餐饮、娱乐、酒店</option>");

write("<option value='27'>办公设备、文化体育休闲用品、家居用品</option>");

write("<option value='28'>印刷、包装、造纸</option>");

write("<option value='29'>生产、制造、加工</option>");

write("<option value='30'>教育、培训、科研院所</option>");

write("<option value='31'>医疗、保健、卫生服务</option>");

write("<option value='32'>人才交流、中介</option>");

write("<option value='33'>协会、社团、政府公用事业、社区服务</option>");

write("<option value='34'>农、林、牧、副、渔业</option>");

write("<option value='36'>法律</option>"); //新增

write("<option value='35'>其它</option>");

}

}

/**输出学历下拉列表项(假设该函数有传參数,则默认选中博士,此做法主要是针对企业管理中心的简历搜索的重置)*/

function writeDegree()

{

var strSelected;

if(writeDegree.arguments.length==0)

{

strSelected="";

}

else

{

//alert(writeDegree.arguments.callee);

strSelected="selected";

}

with(document)

{

write("<option value='20'>请选择</option>");

write("<option value='20'>高中</option>");

write("<option value='30'>中专</option>");

write("<option value='40'>大专</option>");

write("<option value='50'>本科</option>");

write("<option value='60'>硕士</option>");

write("<option value='70' "+strSelected+">博士</option>");

}

}

/**输出更新时间下拉列表项*/

function writeUpdateDate()

{

with(document)

{

write("<option value='99999'>不限</option>");

write("<option value='1'>1天内</option>");

write("<option value='3'>3天内</option>");

write("<option value='7'>一周内</option>");

write("<option value='15'>半月内</option>");

write("<option value='30'>一个月内</option>");

write("<option value='90' selected>三个月内</option>");

write("<option value='183'>半年内</option>");

write("<option value='366'>一年内</option>");

}

}

/**输出时间日期下拉列表项*/

function writeMonthDate()

{

with(document)

{

write("<option value=01>01</option>");

write("<option value=02>02</option>");

write("<option value=03>03</option>");

write("<option value=04>04</option>");

write("<option value=05>05</option>");

write("<option value=06>06</option>");

write("<option value=07>07</option>");

write("<option value=08>08</option>");

write("<option value=09>09</option>");

write("<option value=10>10</option>");

write("<option value=11>11</option>");

write("<option value=12>12</option>");

}

}

function writeDayDate()

{

with(document)

{

write("<option value=01>01</option>");

write("<option value=02>02</option>");

write("<option value=03>03</option>");

write("<option value=04>04</option>");

write("<option value=05>05</option>");

write("<option value=06>06</option>");

write("<option value=07>07</option>");

write("<option value=08>08</option>");

write("<option value=09>09</option>");

write("<option value=10>10</option>");

write("<option value=11>11</option>");

write("<option value=12>12</option>");

write("<option value=13>13</option>");

write("<option value=14>14</option>");

write("<option value=15>15</option>");

write("<option value=16>16</option>");

write("<option value=17>17</option>");

write("<option value=18>18</option>");

write("<option value=19>19</option>");

write("<option value=20>20</option>");

write("<option value=21>21</option>");

write("<option value=22>22</option>");

write("<option value=23>23</option>");

write("<option value=24>24</option>");

write("<option value=25>25</option>");

write("<option value=26>26</option>");

write("<option value=27>27</option>");

write("<option value=28>28</option>");

write("<option value=29>29</option>");

write("<option value=30>30</option>");

write("<option value=31>31</option>");

}

}

/**输出外语类别下拉列表项*/

function writeForeignLanguage()

{

with(document)

{

write("<option value=10 selected>英语</option>");

write("<option value=11>日语</option>");

write("<option value=12>法语</option>");

write("<option value=13>德语</option>");

write("<option value=14>阿拉伯语</option>");

write("<option value=15>朝鲜语</option>");

write("<option value=16>西班牙语</option>");

write("<option value=17>俄语</option>");

write("<option value=18>意大利语</option>");

write("<option value=19>其它</option>");

}

}

/**输出第2-3种外语类别下拉列表项*/

function writettForeignLanguage()

{

with(document)

{

write("<option value=0 selected></option>");

write("<option value=10>英语</option>");

write("<option value=11>日语</option>");

write("<option value=12>法语</option>");

write("<option value=13>德语</option>");

write("<option value=14>阿拉伯语</option>");

write("<option value=15>朝鲜语</option>");

write("<option value=16>西班牙语</option>");

write("<option value=17>俄语</option>");

write("<option value=18>意大利语</option>");

write("<option value=19>其它</option>");

}

}

/**输出计算机水平类别下拉列表项*/

function writeComputerLevel()

{

with(document)

{

write("<option value=20>0基础</option>");

write("<option value=21>中级</option>");

write("<option value=23>高级</option>");

write("<option value=24>0基础程序猿</option>");

write("<option value=25>程序猿</option>");

write("<option value=26>高级程序猿</option>");

write("<option value=27>系统分析员</option>");

write("<option value=28>微软认证project师</option>");

write("<option value=29>高校非计算机专业二级</option>");

write("<option value=30>高校非计算机专业三级(偏软)</option>");

write("<option value=31>高校非计算机专业三级(偏硬)</option>");

}

}

/*******************************************************

*Function:工作岗位类别,工作岗位,全国各城市数组

*Date:2004-06-26

*Mender:Lzj.Liu

*Memo:

为了以后维护及扩展,城市数组添加编号

且编号与tbjob90_other.dbo.workArea中的编号同样

*******************************************************/

//工作岗位类别,工作岗位,数组

var catelogCount;

catelogs = new Array();

catelogCount=406;

/**计算机(IT)类-不限*/

catelogs[0]= new Array("计算机(IT)类-不限","Information Technology","1000",1)

catelogs[1]= new Array("技术总监CTO","Tech. Majordomo, CTO","1019",0)

catelogs[2]= new Array("信息主管/CIO","Information Majordomo, CIO","1020",0)

catelogs[3]= new Array("项目经理","Project Manager","1021",0)

catelogs[4]= new Array("数据库开发与管理(DBA)","Database Administration","1003",0)

catelogs[5]= new Array("软件project师","Software Engineering","1004",0)

catelogs[6]= new Array("硬件project师","Hardware Engineering","1005",0)

catelogs[7]= new Array("网络管理员","Network administrator","1007",0)

catelogs[8]= new Array("INTERNET/WEB/电子商务","Internet/Web/E-Commerce","1008",0)

catelogs[9]= new Array("网页设计师","Webpage Designer","1009",0)

catelogs[10]= new Array("站点策划","Web Designer","1010",0)

catelogs[11]= new Array("系统集成/技术支持","System integration, Technical Support","1011",0)

catelogs[12]= new Array("系统分析员","System Analyst","1012",0)

catelogs[13]= new Array("測试project师","Test Engineering","1013",0)

catelogs[14]= new Array("MRP/ERP/SAP实施project师","MRP/ERP Actualize Engineering","1014",0)

catelogs[15]= new Array("电脑美工","Computer Art Designer","1015",0)

catelogs[16]= new Array("站点编辑","Website Editor","1016",0)

catelogs[17]= new Array("栏目主持人","Column Emcee","1017",0)

catelogs[18]= new Array("系统维护员","System maintenace","1018",0)

catelogs[19]= new Array("其他相关职位","other","1040",0)

/**销售类-不限*/

catelogs[20]= new Array("销售类-不限","Sales","1100",1)

catelogs[21]= new Array("销售总监","Sales Majordomo","1124",0)

catelogs[22]= new Array("销售代表","Sales agent","1105",0)

catelogs[23]= new Array("销售project师","Sales Engineering","1108",0)

catelogs[24]= new Array("销售部经理","Sales manager","1112",0)

catelogs[25]= new Array("销售主管","Sales director","1116",0)

catelogs[26]= new Array("销售助理","Sales assistant","1117",0)

catelogs[27]= new Array("推(营)销员","Salesman","1118",0)

catelogs[28]= new Array("商务经理/商务专员","Commerce manager/Commerce clerk","1119",0)

catelogs[29]= new Array("渠道经理","Channel Manager","1120",0)

catelogs[30]= new Array("渠道主管","Channel director","1121",0)

catelogs[31]= new Array("区域销售经理","District Sales manager","1122",0)

catelogs[32]= new Array("分销经理","Distribution manager","1123",0)

catelogs[33]= new Array("其他相关职位","Other","1140",0)

/**经营/管理类-不限*/

catelogs[34]= new Array("经营/管理类-不限","Management","1200",1)

catelogs[35]= new Array("(正/副)总裁/总经理/CEO","President, VP, General Manager, CEO","1204",0)

catelogs[36]= new Array("产品经理/主管","Product Manager/Director","1217",0)

catelogs[37]= new Array("企业发展规划经理/主管/助理","Corporate Planning Manager","1218",0)

catelogs[38]= new Array("分公司/办事处经理/主管","Branch Manager/Director","1219",0)

catelogs[39]= new Array("部门经理","Department Manager","1205",0)

catelogs[40]= new Array("总经理助理","President Assistant","1210",0)

catelogs[41]= new Array("厂长/副厂长","Factory Director, Vice Factory Director","1211",0)

catelogs[42]= new Array("经理助理","Manager Assistant","1213",0)

catelogs[43]= new Array("项目经理/主管","Project Manager","1214",0)

catelogs[44]= new Array("部门主管","Department Director","1215",0)

catelogs[45]= new Array("其他相关职位","Other","1240",0)

/**財务/审(统)计类-不限*/

catelogs[46]= new Array("財务/审(统)计类-不限","Financing/Audit/Stat.","1300",1)

catelogs[47]= new Array("財务总监","Finance Majordomo, CFO","1316",0)

catelogs[48]= new Array("財务主管/经理","Finance Director/Manager","1303",0)

catelogs[49]= new Array("会计","Accountant","1304",0)

catelogs[50]= new Array("审计","Auditor","1305",0)

catelogs[51]= new Array("帐目(进出口)管理","Account management","1306",0)

catelogs[52]= new Array("注冊会计师","Certified accountant","1308",0)

catelogs[53]= new Array("会计助理","Accountant assistant","1310",0)

catelogs[54]= new Array("出纳","Treasurer","1311",0)

catelogs[55]= new Array("注冊审计师","Certified Auditor","1312",0)

catelogs[56]= new Array("统计","Statistician","1313",0)

catelogs[57]= new Array("財务分析","Finance Analysis","1314",0)

catelogs[58]= new Array("成本分析/核算","Cost Analysis/Adjust","1315",0)

catelogs[59]= new Array("其他相关职位","Other","1340",0)

/**金融/保险/证券类-不限*/

catelogs[60]= new Array("金融/保险/证券类-不限","Finance/Insurance/Securities","1400",1)

catelogs[61]= new Array("证券期货从业人员","Securities/Futures","1403",0)

catelogs[62]= new Array("金融投资分析","Finance investing analysis","1404",0)

catelogs[63]= new Array("保险业务/保险经纪人/保险代理人","Insurance Agent/Broker","1405",0)

catelogs[64]= new Array("税务专员","Tax Clerk","1406",0)

catelogs[65]= new Array("评估师","Evaluating","1408",0)

catelogs[66]= new Array("银行信贷","Bank credit","1409",0)

catelogs[67]= new Array("融资经理/主管","Financing Manager/Directory","1410",0)

catelogs[68]= new Array("出纳员/银行专员","Treasurer/Bank Clerk","1411",0)

catelogs[69]= new Array("预结算专员","Budgeting/Balance Clerk","1412",0)

catelogs[70]= new Array("炒股操盘手","Stock Manipulator","1413",0)

catelogs[71]= new Array("证券经纪人","Securities Broke","1414",0)

catelogs[72]= new Array("注冊分析师","Certified Investment/Financial Analyst","1415",0)

catelogs[73]= new Array("投资/基金项目经理","Investment Manager","1416",0)

catelogs[74]= new Array("其他相关职位","Other","1440",0)

/**电子通讯/电气(器)类-不限*/

catelogs[75]= new Array("电子通讯/电气(器)类-不限","Telecommunication, Electronics","1500",1)

catelogs[76]= new Array("电子project师","Electron Engineer","1503",0)

catelogs[77]= new Array("电气project师","Electric Engineer","1504",0)

catelogs[78]= new Array("电信project师/通讯project师","Telecom Engineer/Communication Engineer","1505",0)

catelogs[79]= new Array("电路(布线)设计","Circuit Design","1506",0)

catelogs[80]= new Array("智能大厦/综合布线/弱电","Intelligent mansion/ synthetic disposal/Weak electronic","1508",0)

catelogs[81]= new Array("自己主动控制","Autocontrol","1509",0)

catelogs[82]= new Array("无线电技术","Radio-technology","1510",0)

catelogs[83]= new Array("半导体技术","Semiconductor technology","1511",0)

catelogs[84]= new Array("变压器/磁电project师","Magnetoelectricity Engineer","1512",0)

catelogs[85]= new Array("电声project师","Electric sound engineer","1513",0)

catelogs[86]= new Array("数码产品开发project师","Digital Production Development Engineer","1514",0)

catelogs[87]= new Array("单片机/DSP/底层软件开发","SCM/DSP/FPGA Development","1515",0)

catelogs[88]= new Array("光源与照明project","Lamp-house and Lighting Engineering","1516",0)

catelogs[89]= new Array("灯饰研发project师","Lamp Development Engineer","1517",0)

catelogs[90]= new Array("电气维修","Electric Maintain","1518",0)

catelogs[91]= new Array("家用电器","Household electric appliances","1520",0)

catelogs[92]= new Array("小家电","Small Household electric appliances","1521",0)

catelogs[93]= new Array("电器project师","Electric apparatus Engineer","1522",0)

catelogs[94]= new Array("电力project师","Electric Power Engineer","1523",0)

catelogs[95]= new Array("測试project师","Test engineer","1524",0)

catelogs[96]= new Array("其他相关职位","Other","1540",0)

/**机械(电)/仪表类-不限*/

catelogs[97]= new Array("机械(电)/仪表类-不限","Mechanism/Instrument","1600",1)

catelogs[98]= new Array("机械设计与制造","Machine Design and Manufacture","1603",0)

catelogs[99]= new Array("机械project师","Machine Engineer","1604",0)

catelogs[100]= new Array("模具project师","Matrix Engineer","1605",0)

catelogs[101]= new Array("铸造/锻造","Foundry/Smithing","1606",0)

catelogs[102]= new Array("注塑成型","Prototyping","1607",0)

catelogs[103]= new Array("气动/液压","Hydraulic Pressure/Gas driven","1608",0)

catelogs[104]= new Array("机械制图","Mechanical cartography","1609",0)

catelogs[105]= new Array("精密机械/仪器仪表","Precision optical machinery /instrument and meter","1610",0)

catelogs[106]= new Array("纺织机械","Spin machine","1611",0)

catelogs[107]= new Array("设备修理","Device Repairment","1614",0)

catelogs[108]= new Array("汽车/摩托车project师","Automobile/Autocycle Engineer","1615",0)

catelogs[109]= new Array("五金矿产/金属制品","Ironware, mineral resources/metalwork","1616",0)

catelogs[110]= new Array("机电一体化","Electromechanization","1617",0)

catelogs[111]= new Array("锅炉/压力容器","Boiler/Pressure vessel","1618",0)

catelogs[112]= new Array("船舶机械","Watercraft machine","1619",0)

catelogs[113]= new Array("机械工艺师","Machine Technics","1620",0)

catelogs[114]= new Array("刀具project师","Reamer Engineer","1621",0)

catelogs[115]= new Array("CNCproject师","CNC Engineer","1622",0)

catelogs[116]= new Array("结构设计师","Structure Engineer","1623",0)

catelogs[117]= new Array("食品机械","Grocery machine","1624",0)

catelogs[118]= new Array("焊接机械","Jointing machine","1625",0)

catelogs[119]= new Array("其他相关职位","Other","1640",0)

/**能源动力类-不限*/

catelogs[120]= new Array("能源动力类-不限","Energy sources/Power","1700",1)

catelogs[121]= new Array("水利、水电","Irrigation works/water and electricity","1703",0)

catelogs[122]= new Array("核电、火电","nuclear-powered/fire-powered electricity","1704",0)

catelogs[123]= new Array("电厂、电力","Power plant","1705",0)

catelogs[124]= new Array("制冷、暖通","Refrigeration/Heating","1706",0)

catelogs[125]= new Array("空调、锅炉","Air-conditioning/boiler","1707",0)

catelogs[126]= new Array("石油/天燃气/储运","Petroleum/natural gas","1708",0)

catelogs[127]= new Array("城市燃气","City gas","1709",0)

catelogs[128]= new Array("其他相关职位","Other","1740",0)

/**房地产/建筑施工类-不限*/

catelogs[129]= new Array("房地产/建筑施工类-不限","Realty/Architecture/Construction","1800",1)

catelogs[130]= new Array("建筑(结构)project师","Architecture engineer","1803",0)

catelogs[131]= new Array("建筑制图","Architecture cartography","1804",0)

catelogs[132]= new Array("project监理","Engineering superintendent","1805",0)

catelogs[133]= new Array("管道(水、电)","Pipeline/Refrigeration","1806",0)

catelogs[134]= new Array("给排水/供水(电)project","Drainage/water(electric) supply engineering","1807",0)

catelogs[135]= new Array("project预决算/施工","Engineering budget/Construction","1808",0)

catelogs[136]= new Array("房地产开发/策划","Realty Development/Planning","1809",0)

catelogs[137]= new Array("房地产评估","Realty evaluation","1810",0)

catelogs[138]= new Array("物业管理","Infrastructure management","1811",0)

catelogs[139]= new Array("路桥技术/隧道project","Route and Bridge tech./Tunnel engineering","1812",0)

catelogs[140]= new Array("基建/岩土project","Capital construction","1813",0)

catelogs[141]= new Array("港口与航道project","Port and sea-route engineering","1814",0)

catelogs[142]= new Array("园艺project/园林技术","Gardening engineering/Gardens tech.","1815",0)

catelogs[143]= new Array("房地产中介","Realty agency","1816",0)

catelogs[144]= new Array("注冊建筑师","Registered architect","1817",0)

catelogs[145]= new Array("制冷暖通","Refrigeration/Central heating","1818",0)

catelogs[146]= new Array("工民建","Industry/Civilian Architecture","1819",0)

catelogs[147]= new Array("其他相关职位","Other","1840",0)

/**公司文职类-不限*/

catelogs[148]= new Array("公司文职类-不限","Civilian Posts","1900",1)

catelogs[149]= new Array("图书情报/档案管理","Books Information/Files administration","1903",0)

catelogs[150]= new Array("文案策划/资料编写","Article Planning/Materials writing","1904",0)

catelogs[151]= new Array("高级秘书","Senior Secretary","1905",0)

catelogs[152]= new Array("电脑操作员/打字员","Computer Operator/ Type writer","1907",0)

catelogs[153]= new Array("前台文员接待","Reception","1908",0)

catelogs[154]= new Array("高级文员","Senior Civilian","1909",0)

catelogs[155]= new Array("话务员","Telephonist","1910",0)

catelogs[156]= new Array("文员","Civilian","1911",0)

catelogs[157]= new Array("其他相关职位","Other","1940",0)

/**广告(装潢、包装)设计类-不限*/

catelogs[158]= new Array("广告(装潢、包装)设计类-不限","Advertisement(upholster, casing) design","2100",1)

catelogs[159]= new Array("广告设计/创意策划","Advertisement design/originality planning","2103",0)

catelogs[160]= new Array("文案/媒体策划","Planning","2104",0)

catelogs[161]= new Array("产品包装设计","product casing design","2105",0)

catelogs[162]= new Array("室内(外)装修/装潢设计","Outdoor(indoor) fitment/upholster design","2106",0)

catelogs[163]= new Array("工艺品设计","Craftwork design","2107",0)

catelogs[164]= new Array("纺织/服饰(装)设计","Spin/finery design","2108",0)

catelogs[165]= new Array("形象设计","Visualize design","2109",0)

catelogs[166]= new Array("平面设计","Plane design","2110",0)

catelogs[167]= new Array("玩具设计","Toy design","2111",0)

catelogs[168]= new Array("珠宝设计","jewellery design","2112",0)

catelogs[169]= new Array("三维动画设计","3D Movie Design","2113",0)

catelogs[170]= new Array("多媒体设计与制作","multimedia design","2114",0)

catelogs[171]= new Array("工业产品设计","Industry product design","2115",0)

catelogs[172]= new Array("其他相关职位","Other","2140",0)

/**文体/教育/培训类-不限*/

catelogs[173]= new Array("文体/教育/培训类-不限","Culture/Education/Training","2200",1)

catelogs[174]= new Array("新闻出版","News/Press","2203",0)

catelogs[175]= new Array("文化艺术","Culture/Arts","2205",0)

catelogs[176]= new Array("高等教育","Higher education","2206",0)

catelogs[177]= new Array("中级教育","Intermediate education","2207",0)

catelogs[178]= new Array("小学/幼儿教育","Grade school/infant education","2208",0)

catelogs[179]= new Array("竞技/体育","Sports","2210",0)

catelogs[180]= new Array("职业教育/培训","Vocational education/Training","2211",0)

catelogs[181]= new Array("记者","Reporter","2212",0)

catelogs[182]= new Array("家教","Family education","2213",0)

catelogs[183]= new Array("其他相关职位","Other","2240",0)

/**卫生医疗/美容保健类-不限*/

catelogs[184]= new Array("卫生医疗/美容保健类-不限","Sanitation/Treatment/Hairedressing/Healthing","2400",1)

catelogs[185]= new Array("医生/医师","Doctor/Physician","2403",0)

catelogs[186]= new Array("牙科医生","Dentist","2404",0)

catelogs[187]= new Array("心理医生","Psychology doctor","2405",0)

catelogs[188]= new Array("外科医生","Surgeon","2406",0)

catelogs[189]= new Array("预防医生","Prevent doctor","2407",0)

catelogs[190]= new Array("护士/护理","Nurse","2408",0)

catelogs[191]= new Array("保健/健美","Heathcare/ Gymnasium","2409",0)

catelogs[192]= new Array("美容/美发","Hairdressing","2410",0)

catelogs[193]= new Array("药剂/中药/西药/药检","Medicament/Chinese traditional/Western medicine","2411",0)

catelogs[194]= new Array("针灸推拿","Acupuncture/message","2412",0)

catelogs[195]= new Array("临床医学","Clinic iatrology","2413",0)

catelogs[196]= new Array("妇幼保健","Women/children heathcare","2414",0)

catelogs[197]= new Array("卫生防疫","Sanitation/epidemic prevention","2415",0)

catelogs[198]= new Array("医药代表","Curative agent","2416",0)

catelogs[199]= new Array("医药检验","Medicine checker","2417",0)

catelogs[200]= new Array("兽医","Farrier","2418",0)

catelogs[201]= new Array("妇产科医生","Accoucheur","2419",0)

catelogs[202]= new Array("其他相关职位","Other","2440",0)

/**化工/制药类-不限*/

catelogs[203]= new Array("化工/制药类-不限","Chemical/Pharmacy","2600",1)

catelogs[204]= new Array("日用化工","Daily-use chemical industry","2603",0)

catelogs[205]= new Array("生物化工/生物制药","Biochemical industry/Biology pharmacy","2604",0)

catelogs[206]= new Array("造纸/废品处理","Paper making/waster disposal","2605",0)

catelogs[207]= new Array("化学药剂/药品","Chemistry medicament","2606",0)

catelogs[208]= new Array("玻璃/硅酸盐工业","Glass/Silicate industry","2607",0)

catelogs[209]= new Array("农药、化肥","Pesticide/ Chemical fertilizer","2608",0)

catelogs[210]= new Array("无机化工","Abio-chemical","2609",0)

catelogs[211]= new Array("有机化工","Organic chemical","2610",0)

catelogs[212]= new Array("精细化工","Fine chemical","2611",0)

catelogs[213]= new Array("分析化工","Analyse chemical","2612",0)

catelogs[214]= new Array("高分子化工/化纤/新材料","Macromolecule chemical/Chemical fibre/New materials","2613",0)

catelogs[215]= new Array("电镀化工","Plating chemical","2614",0)

catelogs[216]= new Array("其他相关职位","Other","2640",0)

/**宾馆饭店/餐饮旅游类-不限*/

catelogs[217]= new Array("宾馆饭店/餐饮旅游类-不限","Hotel/Restaurant/Junketing","2700",1)

catelogs[218]= new Array("服务员/侍者/门童","Waiter/waitress","2703",0)

catelogs[219]= new Array("高级厨师/调酒师","Senior chef/Wine mixer","2704",0)

catelogs[220]= new Array("导游","Cicerone","2705",0)

catelogs[221]= new Array("前台接待/礼仪/接线生","Reception/Telephonist","2706",0)

catelogs[222]= new Array("大堂经理/副理","Lobby manager","2707",0)

catelogs[223]= new Array("楼面经理/主任","Floor manager/director","2708",0)

catelogs[224]= new Array("酒店管理","Hotel manager","2709",0)

catelogs[225]= new Array("其他相关职位","Other","2740",0)

/**商店/零售服务类-不限*/

catelogs[226]= new Array("商店/零售服务类-不限","Shop/Retail/Services","2800",1)

catelogs[227]= new Array("营业员/服务员/店员","Shop assistant/counterjumper","2803",0)

catelogs[228]= new Array("导购员","Phasing leader","2804",0)

catelogs[229]= new Array("收银员","Gathering","2805",0)

catelogs[230]= new Array("店长","Innkeeper/shop manager","2806",0)

catelogs[231]= new Array("营销主管","Marketing director","2807",0)

catelogs[232]= new Array("理货员","Tally clerk","2808",0)

catelogs[233]= new Array("其他相关职位","Other","2840",0)

/**后勤保障类-不限*/

catelogs[234]= new Array("后勤保障类-不限","Logistics/Safeguard","2900",1)

catelogs[235]= new Array("保安/司机/搬运","Security/ Chauffeur/Portage","2903",0)

catelogs[236]= new Array("寻呼/声讯服务","Pagers/Voice information services","2904",0)

catelogs[237]= new Array("社区服务","Community services","2905",0)

catelogs[238]= new Array("清洁工/后勤","Dustman/logistics","2906",0)

catelogs[239]= new Array("食堂厨师","Refectory chef","2907",0)

catelogs[240]= new Array("其他相关职位","Other","2940",0)

/**其它类-不限*/

catelogs[241]= new Array("其它类-不限","Others","3000",1)

catelogs[242]= new Array("交通运输","Traffic","3003",0)

catelogs[243]= new Array("声光技术","Voice/Light tech.","3004",0)

catelogs[244]= new Array("生物技术","Boilogy tech.","3005",0)

catelogs[245]= new Array("測绘技术","Mapping tech.","3006",0)

catelogs[246]= new Array("激光技术","Laser tech.","3007",0)

catelogs[247]= new Array("地质勘探","Geology prove","3008",0)

catelogs[248]= new Array("矿产冶金","Mine/metallurgy","3009",0)

catelogs[249]= new Array("环境project","Environment engineering","3011",0)

catelogs[250]= new Array("市政建设/城市规划","Civicism construction/city planning","3012",0)

catelogs[251]= new Array("农、林、牧、渔、其它","Farming/Lumber/Pasturage/Fishery","3014",0)

catelogs[252]= new Array("其他相关职位","Other","3040",0)

/**行政/人事类-不限*/

catelogs[253]= new Array("行政/人事类-不限","unlimited","3100",1)

catelogs[254]= new Array("人力资源总监","Human Resource Majordomo","3115",0)

catelogs[255]= new Array("行政总监","Human Resource Majordomo","3116",0)

catelogs[256]= new Array("人事经理","Human Resource Manager","3103",0)

catelogs[257]= new Array("人事文员","Human Resource Civilian","3104",0)

catelogs[258]= new Array("员工培训经理/主管","Training Manager/Director","3105",0)

catelogs[259]= new Array("招聘经理/主任","Invite Manger/Director","3106",0)

catelogs[260]= new Array("行政经理","Administration Manager","3107",0)

catelogs[261]= new Array("人事助理","Human Resource Assistant","3108",0)

catelogs[262]= new Array("行政助理","Administration Assistant","3109",0)

catelogs[263]= new Array("行政文员","Administration Civilian","3110",0)

catelogs[264]= new Array("总务","General Affairs","3111",0)

catelogs[265]= new Array("薪资福利经理/主管/专员","Compensation Manager/Director/Clerk","3112",0)

catelogs[266]= new Array("绩效考核经理/主管/专员","Performance Manager/Director/Clerk","3113",0)

catelogs[267]= new Array("招聘专员","Invite Clerk","3114",0)

catelogs[268]= new Array("其他相关职位","Other","3140",0)

/**工业/工厂类-不限*/

catelogs[269]= new Array("工业/工厂类-不限","Industry/Factories","3500",1)

catelogs[270]= new Array("产品开发","Product Development","3504",0)

catelogs[271]= new Array("生产经理","Product Manager","3505",0)

catelogs[272]= new Array("project经理/主管","Engineering Manager/Director","3506",0)

catelogs[273]= new Array("品管经理/主管","PQA Manager/Director","3507",0)

catelogs[274]= new Array("物控经理/主管","Material Manager/Director","3508",0)

catelogs[275]= new Array("设备经理/主管","Device Manager/Director","3509",0)

catelogs[276]= new Array("仓库管理员","Storage Controller","3511",0)

catelogs[277]= new Array("计划员/调度员","Dispatcher","3512",0)

catelogs[278]= new Array("化验/检验员","Assay/Test Clerk","3513",0)

catelogs[279]= new Array("跟单员","Order Clerk","3516",0)

catelogs[280]= new Array("SMT技术员","SMT Technician","3517",0)

catelogs[281]= new Array("工艺project师","Technic Engineer","3518",0)

catelogs[282]= new Array("生管主管/督导","Production Management Director","3519",0)

catelogs[283]= new Array("生管员","Production Management Clerk","3520",0)

catelogs[284]= new Array("PEproject师","PE Engineer","3521",0)

catelogs[285]= new Array("IEproject师","IE Engineer","3522",0)

catelogs[286]= new Array("组长/拉长","Team leader","3523",0)

catelogs[287]= new Array("project设备project师","Engineering Device Engineer","3524",0)

catelogs[288]= new Array("品管员","PQA Commissioner","3525",0)

catelogs[289]= new Array("ISO专员","ISO Commissioner","3526",0)

catelogs[290]= new Array("物控员","Material Commissioner","3527",0)

catelogs[291]= new Array("安全主任","Security Director","3528",0)

catelogs[292]= new Array("统计员","Statistician","3529",0)

catelogs[293]= new Array("品质project师","PQA Engineer","3530",0)

catelogs[294]= new Array("MEproject师","ME Engineer","3531",0)

catelogs[295]= new Array("制造课长","Manufacture Director","3532",0)

catelogs[296]= new Array("RD经理","RD Manager","3533",0)

catelogs[297]= new Array("其他相关职位","Other","3540",0)

/**技工/普工类-不限*/

catelogs[298]= new Array("技工/普工类-不限","Mechanic/General worker","3600",1)

catelogs[299]= new Array("车、铣、刨、磨","Lathe/Milling/Planing","3603",0)

catelogs[300]= new Array("钳、钣、铆、冲、焊、铸","Pincers, francium, rivetting, washing, weld, cast","3604",0)

catelogs[301]= new Array("裁、剪、车、缝、熨、烫","Sewing/iron","3605",0)

catelogs[302]= new Array("水工/木工/油漆工","Warterworker, woodworker, painter","3606",0)

catelogs[303]= new Array("电工/锅炉工","Electrician/boiler worker","3607",0)

catelogs[304]= new Array("普通工人","General worker","3608",0)

catelogs[305]= new Array("其他相关职位","Other","3640",0)

/**轻工类-不限*/

catelogs[306]= new Array("轻工类-不限","Light industry","3700",1)

catelogs[307]= new Array("服装纺织","Accouterments/Spin","3703",0)

catelogs[308]= new Array("印刷/染整技术","Press/printing and dyeing","3704",0)

catelogs[309]= new Array("纸浆造纸工艺","Paper making","3705",0)

catelogs[310]= new Array("制鞋/制衣/制革/手袋","Shoemaking/Clothing/Curry/Vanity","3706",0)

catelogs[311]= new Array("食品project/糖酒饮料/粮油副食","Foodstuff Engineering/Candy/Wine/Drink/Grain/oil","3707",0)

catelogs[312]= new Array("陶瓷技术","potter","3708",0)

catelogs[313]= new Array("金银首饰加工","Jewellery process","3709",0)

catelogs[314]= new Array("其他相关职位","Other","3740",0)

/**市场营销/公关类-不限*/

catelogs[315]= new Array("市场营销/公关类-不限","Marketing/Public Relations","4100",1)

catelogs[316]= new Array("市场/营销总监","Market Majordomo","4117",0)

catelogs[317]= new Array("市场/营销经理","Marketing Manager","4103",0)

catelogs[318]= new Array("市场助理/专员","Marketing Assistant/Clerk","4104",0)

catelogs[319]= new Array("市场部主管","Marketing Director","4105",0)

catelogs[320]= new Array("市场调研/业务分析","Marketing Research/ Business Analysis","4106",0)

catelogs[321]= new Array("市场/行销企划","Marketing/Sales Planning","4107",0)

catelogs[322]= new Array("产品/品牌企划","Product/Brand Planning","4108",0)

catelogs[323]= new Array("品牌经理","Brand Manager","4109",0)

catelogs[324]= new Array("价格企划","Price Planning","4110",0)

catelogs[325]= new Array("广告企划","Advertisement Planning","4111",0)

catelogs[326]= new Array("新闻媒介企划","News Media Planning","4112",0)

catelogs[327]= new Array("市场推广/拓展/合作","Market Development","4113",0)

catelogs[328]= new Array("促销/礼仪专员","Promotion/Comity Clerk","4114",0)

catelogs[329]= new Array("公关经理","Public Relations Manager","4115",0)

catelogs[330]= new Array("公关专员","Public Relations Commissioner","4116",0)

catelogs[331]= new Array("其他相关职位","Other","4140",0)

/**客户服务类-不限*/

catelogs[332]= new Array("客户服务类-不限","Customer Services","4200",1)

catelogs[333]= new Array("客户服务经理","Customer Service Manager","4203",0)

catelogs[334]= new Array("客户数据库管理","Customer Database Administrator","4204",0)

catelogs[335]= new Array("客户关系管理","Customer Relationship Administrator","4205",0)

catelogs[336]= new Array("客户培训","Customer Training","4206",0)

catelogs[337]= new Array("客户咨询","Customer Consultant","4207",0)

catelogs[338]= new Array("热线咨询","Hot-line Consultant","4208",0)

catelogs[339]= new Array("客户服务","Customer Support","4209",0)

catelogs[340]= new Array("售前/售后支持","Pre-sale/after-sale support","4210",0)

catelogs[341]= new Array("投诉处理","Complains Solve","4211",0)

catelogs[342]= new Array("投诉监控","Complains Manage","4212",0)

catelogs[343]= new Array("客户主任","Customer Director","4213",0)

catelogs[344]= new Array("其他相关职位","Other","4240",0)

/**翻译类-不限*/

catelogs[345]= new Array("翻译类-不限","Translation","4300",1)

catelogs[346]= new Array("英语翻译","English","4303",0)

catelogs[347]= new Array("日语翻译","Japanese","4304",0)

catelogs[348]= new Array("法语翻译","French","4305",0)

catelogs[349]= new Array("德语翻译","German","4306",0)

catelogs[350]= new Array("俄语翻译","Russian","4307",0)

catelogs[351]= new Array("朝鲜语翻译","Korea","4308",0)

catelogs[352]= new Array("西班牙语翻译","Spanish","4309",0)

catelogs[353]= new Array("其他相关职位","Other","4340",0)

/**物流/贸易类-不限*/

catelogs[354]= new Array("物流/贸易类/採购类-不限","Trading","4400",1)

catelogs[355]= new Array("物流经理","Logistics Manager","4403",0)

catelogs[356]= new Array("物流主管","Logistics Director","4404",0)

catelogs[357]= new Array("仓库经理/主管","Storage manager/director","4405",0)

catelogs[358]= new Array("仓库管理员","Storage clerk","4406",0)

catelogs[359]= new Array("运输经理/主管","Transit manager/directer","4407",0)

catelogs[360]= new Array("单证员","Order Clerk","4408",0)

catelogs[361]= new Array("快递员","Courier","4409",0)

catelogs[362]= new Array("物流操作员","Logistics operator","4410",0)

catelogs[363]= new Array("船务人员","Shipman","4411",0)

catelogs[364]= new Array("外销员","Export commissioner","4412",0)

catelogs[365]= new Array("国际业务","International business","4413",0)

catelogs[366]= new Array("报关员","Customs commissioner","4414",0)

catelogs[367]= new Array("採购管理","Stock Management","4415",0)

catelogs[368]= new Array("其他相关职位","Other","4440",0)

/**咨询/顾问类-不限*/

catelogs[369]= new Array("咨询/顾问类-不限","Consultation","4500",1)

catelogs[370]= new Array("企业策划/顾问","Enterprise Planning consultant","4503",0)

catelogs[371]= new Array("企业管理/企管顾问","Enterprise management consultant","4504",0)

catelogs[372]= new Array("涉外咨询师","Internationalize consultant","4505",0)

catelogs[373]= new Array("高级猎头顾问","Senior Head-hunter","4506",0)

catelogs[374]= new Array("咨询总监","Consultant majordomo","4507",0)

catelogs[375]= new Array("咨询经理","Consultant manager","4508",0)

catelogs[376]= new Array("咨询员","consultation","4509",0)

catelogs[377]= new Array("信息中介","Information agency","4510",0)

catelogs[378]= new Array("专业顾问","Speciality consultant","4511",0)

catelogs[379]= new Array("其他相关职位","Other","4540",0)

/**法律专业人员类-不限*/

catelogs[380]= new Array("法律专业人员类-不限","Law Specialist","4600",1)

catelogs[381]= new Array("律师","Lawyer","4603",0)

catelogs[382]= new Array("法律顾问","Counselor","4604",0)

catelogs[383]= new Array("法务人员","Law clerk","4605",0)

catelogs[384]= new Array("律师助理","Lawyer assistant","4606",0)

catelogs[385]= new Array("书记员","secretary","4607",0)

catelogs[386]= new Array("其他相关职位","Other","4640",0)

/**影视/摄影专业类-不限*/

catelogs[387]= new Array("广播/影视/摄影专业类-不限","Movie/Photopgraphy","4700",1)

catelogs[388]= new Array("影视策划/制作人员","Movie planning/Producer","4703",0)

catelogs[389]= new Array("影音器材管理","Media device administrator","4704",0)

catelogs[390]= new Array("演员","Actor/actress","4705",0)

catelogs[391]= new Array("模特儿","model","4706",0)

catelogs[392]= new Array("摄影师","photographer","4707",0)

catelogs[393]= new Array("音效师","sound effects director","4708",0)

catelogs[394]= new Array("节目主持人","M.C","4709",0)

catelogs[395]= new Array("广播电视(影)","Broadcasting","4710",0)

catelogs[396]= new Array("其他相关职位","Other","4740",0)

/**编辑/发行类-不限*/

catelogs[397]= new Array("编辑/发行类-不限","Edit/Publish","4800",1)

catelogs[398]= new Array("总编","editor-in-chief","4803",0)

catelogs[399]= new Array("副总编","subeditor","4804",0)

catelogs[400]= new Array("编辑主任","edit director","4805",0)

catelogs[401]= new Array("编辑","editor","4806",0)

catelogs[402]= new Array("美术编辑","art editor","4807",0)

catelogs[403]= new Array("发行主管","dispatch manager","4808",0)

catelogs[404]= new Array("发行助理","dispatch assistant","4809",0)

catelogs[405]= new Array("其他相关职位","Other","4840",0)

//全国各城市数组

var cityCount;

citys = new Array();

cityCount=536;

/**北京*/

citys[0]= new Array("北京-不限","北京","北京","北京",1,"11")

citys[1]= new Array("├-东城区","北京","东城区","东城区",0,"1101")

citys[2]= new Array("├-西城区","北京","西城区","西城区",0,"1102")

citys[3]= new Array("├-崇文区","北京","崇文区","崇文区",0,"1103")

citys[4]= new Array("├-宣武区","北京","宣武区","宣武区",0,"1104")

citys[5]= new Array("├-朝阳区","北京","朝阳区","朝阳区",0,"1105")

citys[6]= new Array("├-海淀区","北京","海淀区","海淀区",0,"1106")

citys[7]= new Array("├-丰台区","北京","丰台区","丰台区",0,"1107")

citys[8]= new Array("├-石景山区","北京","石景山区","石景山区",0,"1108")

citys[9]= new Array("├-门头沟区","北京","门头沟区","门头沟区",0,"1109")

citys[10]= new Array("├-房山区","北京","房山区","房山区",0,"1110")

citys[11]= new Array("├-通州区","北京","通州区","通州区",0,"1111")

citys[12]= new Array("├-顺义区","北京","顺义区","顺义区",0,"1112")

citys[13]= new Array("├-昌平区","北京","昌平区","昌平区",0,"1113")

citys[14]= new Array("├-大兴区","北京","大兴区","大兴区",0,"1114")

citys[15]= new Array("├-平谷县","北京","平谷县","平谷县",0,"1115")

citys[16]= new Array("├-怀柔县","北京","怀柔县","怀柔县",0,"1116")

citys[17]= new Array("├-密云县","北京","密云县","密云县",0,"1117")

citys[18]= new Array("├-延庆县","北京","延庆县","延庆县",0,"1118")

/**上海*/

citys[19]= new Array("上海-不限","上海","上海","上海",1,"12")

citys[20]= new Array("├-黄浦区","上海","黄浦区","黄浦区",0,"1201")

citys[21]= new Array("├-卢湾区","上海","卢湾区","卢湾区",0,"1202")

citys[22]= new Array("├-徐汇区","上海","徐汇区","徐汇区",0,"1203")

citys[23]= new Array("├-长宁区","上海","长宁区","长宁区",0,"1204")

citys[24]= new Array("├-静安区","上海","静安区","静安区",0,"1205")

citys[25]= new Array("├-普陀区","上海","普陀区","普陀区",0,"1206")

citys[26]= new Array("├-闸北区","上海","闸北区","闸北区",0,"1207")

citys[27]= new Array("├-虹口区","上海","虹口区","虹口区",0,"1208")

citys[28]= new Array("├-杨浦区","上海","杨浦区","杨浦区",0,"1209")

citys[29]= new Array("├-宝山区","上海","宝山区","宝山区",0,"1210")

citys[30]= new Array("├-闵行区","上海","闵行区","闵行区",0,"1211")

citys[31]= new Array("├-嘉定区","上海","嘉定区","嘉定区",0,"1212")

citys[32]= new Array("├-浦东新区","上海","浦东新区","浦东新区",0,"1213")

citys[33]= new Array("├-松江区","上海","松江区","松江区",0,"1214")

citys[34]= new Array("├-金山区","上海","金山区","金山区",0,"1215")

citys[35]= new Array("├-青浦区","上海","青浦区","青浦区",0,"1216")

citys[36]= new Array("├-南汇区","上海","南汇区","南汇区",0,"1217")

citys[37]= new Array("├-奉贤区","上海","奉贤区","奉贤区",0,"1218")

citys[38]= new Array("├-崇明县","上海","崇明县","崇明县",0,"1219")

/**天津*/

citys[39]= new Array("天津-不限","天津","天津","天津",1,"13")

citys[40]= new Array("├-和平区","天津","和平区","和平区",0,"1301")

citys[41]= new Array("├-河东区","天津","河东区","河东区",0,"1302")

citys[42]= new Array("├-河西区","天津","河西区","河西区",0,"1303")

citys[43]= new Array("├-南开区","天津","南开区","南开区",0,"1304")

citys[44]= new Array("├-河北区","天津","河北区","河北区",0,"1305")

citys[45]= new Array("├-红桥区","天津","红桥区","红桥区",0,"1306")

citys[46]= new Array("├-塘沽区","天津","塘沽区","塘沽区",0,"1307")

citys[47]= new Array("├-汉沽区","天津","汉沽区","汉沽区",0,"1308")

citys[48]= new Array("├-大港区","天津","大港区","大港区",0,"1309")

citys[49]= new Array("├-东丽区","天津","东丽区","东丽区",0,"1310")

citys[50]= new Array("├-西青区","天津","西青区","西青区",0,"1311")

citys[51]= new Array("├-北辰区","天津","北辰区","北辰区",0,"1312")

citys[52]= new Array("├-津南区","天津","津南区","津南区",0,"1313")

citys[53]= new Array("├-武清区","天津","武清区","武清区",0,"1314")

citys[54]= new Array("├-宝坻区","天津","宝坻区","宝坻区",0,"1315")

citys[55]= new Array("├-静海县","天津","静海县","静海县",0,"1316")

citys[56]= new Array("├-宁河县","天津","宁河县","宁河县",0,"1317")

citys[57]= new Array("├-蓟县","天津","蓟县","蓟县",0,"1318")

/**重庆*/

citys[58]= new Array("重庆-不限","重庆","重庆","重庆",1,"14")

citys[59]= new Array("├-渝中区","重庆","渝中区","渝中区",0,"1401")

citys[60]= new Array("├-大渡口区","重庆","大渡口区","大渡口区",0,"1402")

citys[61]= new Array("├-江北区","重庆","江北区","江北区",0,"1403")

citys[62]= new Array("├-沙坪坝区","重庆","沙坪坝区","沙坪坝区",0,"1404")

citys[63]= new Array("├-九龙坡区","重庆","九龙坡区","九龙坡区",0,"1405")

citys[64]= new Array("├-南岸区","重庆","南岸区","南岸区",0,"1406")

citys[65]= new Array("├-北碚区","重庆","北碚区","北碚区",0,"1407")

citys[66]= new Array("├-万盛区","重庆","万盛区","万盛区",0,"1408")

citys[67]= new Array("├-双桥区","重庆","双桥区","双桥区",0,"1409")

citys[68]= new Array("├-渝北区","重庆","渝北区","渝北区",0,"1410")

citys[69]= new Array("├-巴南区","重庆","巴南区","巴南区",0,"1411")

citys[70]= new Array("├-万州区","重庆","万州区","万州区",0,"1412")

citys[71]= new Array("├-涪陵区","重庆","涪陵区","涪陵区",0,"1413")

citys[72]= new Array("├-黔江区","重庆","黔江区","黔江区",0,"1414")

citys[73]= new Array("├-永川市","重庆","永川市","永川市",0,"1415")

citys[74]= new Array("├-合川市","重庆","合川市","合川市",0,"1416")

citys[75]= new Array("├-江津市","重庆","江津市","江津市",0,"1417")

citys[76]= new Array("├-南川市","重庆","南川市","南川市",0,"1418")

citys[77]= new Array("├-长寿县","重庆","长寿县","长寿县",0,"1419")

citys[78]= new Array("├-綦江县","重庆","綦江县","綦江县",0,"1420")

citys[79]= new Array("├-潼南县","重庆","潼南县","潼南县",0,"1421")

citys[80]= new Array("├-荣昌县","重庆","荣昌县","荣昌县",0,"1422")

citys[81]= new Array("├-璧山县","重庆","璧山县","璧山县",0,"1423")

citys[82]= new Array("├-大足县","重庆","大足县","大足县",0,"1424")

citys[83]= new Array("├-铜梁县","重庆","铜梁县","铜梁县",0,"1425")

citys[84]= new Array("├-梁平县","重庆","梁平县","梁平县",0,"1426")

citys[85]= new Array("├-城口县","重庆","城口县","城口县",0,"1427")

citys[86]= new Array("├-垫江县","重庆","垫江县","垫江县",0,"1428")

citys[87]= new Array("├-武隆县","重庆","武隆县","武隆县",0,"1429")

citys[88]= new Array("├-丰都县","重庆","丰都县","丰都县",0,"1430")

citys[89]= new Array("├-奉节县","重庆","奉节县","奉节县",0,"1431")

citys[90]= new Array("├-开县","重庆","开县","开县",0,"1432")

citys[91]= new Array("├-云阳县","重庆","云阳县","云阳县",0,"1433")

citys[92]= new Array("├-忠县","重庆","忠县","忠县",0,"1434")

citys[93]= new Array("├-巫溪县","重庆","巫溪县","巫溪县",0,"1435")

citys[94]= new Array("├-巫山县","重庆","巫山县","巫山县",0,"1436")

citys[95]= new Array("├-石柱县","重庆","石柱县","石柱县",0,"1437")

citys[96]= new Array("├-秀山县","重庆","秀山县","秀山县",0,"1438")

citys[97]= new Array("├-酉阳县","重庆","酉阳县","酉阳县",0,"1439")

citys[98]= new Array("├-彭水县","重庆","彭水县","彭水县",0,"1440")

/**广东*/

citys[99]= new Array("广东-不限","广东","广东","广东",1,"15")

citys[100]= new Array("├-广州","广东","广州","广州",0,"1501")

citys[101]= new Array("├-深圳","广东","深圳","深圳",0,"1502")

citys[102]= new Array("├-珠海","广东","珠海","珠海",0,"1503")

citys[103]= new Array("├-汕头","广东","汕头","汕头",0,"1504")

citys[104]= new Array("├-韶关","广东","韶关","韶关",0,"1505")

citys[105]= new Array("├-河源","广东","河源","河源",0,"1506")

citys[106]= new Array("├-梅州","广东","梅州","梅州",0,"1507")

citys[107]= new Array("├-惠州","广东","惠州","惠州",0,"1508")

citys[108]= new Array("├-汕尾","广东","汕尾","汕尾",0,"1509")

citys[109]= new Array("├-东莞","广东","东莞","东莞",0,"1510")

citys[110]= new Array("├-中山","广东","中山","中山",0,"1511")

citys[111]= new Array("├-江门","广东","江门","江门",0,"1512")

citys[112]= new Array("├-佛山","广东","佛山","佛山",0,"1513")

citys[113]= new Array("├-阳江","广东","阳江","阳江",0,"1514")

citys[114]= new Array("├-湛江","广东","湛江","湛江",0,"1515")

citys[115]= new Array("├-茂名","广东","茂名","茂名",0,"1516")

citys[116]= new Array("├-肇庆","广东","肇庆","肇庆",0,"1517")

citys[117]= new Array("├-清远","广东","清远","清远",0,"1518")

citys[118]= new Array("├-潮州","广东","潮州","潮州",0,"1519")

citys[119]= new Array("├-揭阳","广东","揭阳","揭阳",0,"1520")

citys[120]= new Array("├-云浮","广东","云浮","云浮",0,"1521")

/**福建*/

citys[121]= new Array("福建-不限","福建","福建","福建",1,"16")

citys[122]= new Array("├-福州","福建","福州","福州",0,"1601")

citys[123]= new Array("├-厦门","福建","厦门","厦门",0,"1602")

citys[124]= new Array("├-三明","福建","三明","三明",0,"1603")

citys[125]= new Array("├-莆田","福建","莆田","莆田",0,"1604")

citys[126]= new Array("├-泉州","福建","泉州","泉州",0,"1605")

citys[127]= new Array("├-漳州","福建","漳州","漳州",0,"1606")

citys[128]= new Array("├-南平","福建","南平","南平",0,"1607")

citys[129]= new Array("├-龙岩","福建","龙岩","龙岩",0,"1608")

citys[130]= new Array("├-宁德","福建","宁德","宁德",0,"1609")

/**浙江*/

citys[131]= new Array("浙江-不限","浙江","浙江","浙江",1,"17")

citys[132]= new Array("├-杭州","浙江","杭州","杭州",0,"1701")

citys[133]= new Array("├-宁波","浙江","宁波","宁波",0,"1702")

citys[134]= new Array("├-温州","浙江","温州","温州",0,"1703")

citys[135]= new Array("├-嘉兴","浙江","嘉兴","嘉兴",0,"1704")

citys[136]= new Array("├-湖州","浙江","湖州","湖州",0,"1705")

citys[137]= new Array("├-绍兴","浙江","绍兴","绍兴",0,"1706")

citys[138]= new Array("├-金华","浙江","金华","金华",0,"1707")

citys[139]= new Array("├-衢州","浙江","衢州","衢州",0,"1708")

citys[140]= new Array("├-舟山","浙江","舟山","舟山",0,"1709")

citys[141]= new Array("├-台州","浙江","台州","台州",0,"1710")

citys[142]= new Array(" ├-台州路桥","浙江","台州路桥","台州路桥",0,"171001")

citys[143]= new Array(" ├-台州椒江","浙江","台州椒江","台州椒江",0,"171002")

citys[144]= new Array(" ├-台州黄岩","浙江","台州黄岩","台州黄岩",0,"171003")

citys[145]= new Array(" ├-台州玉环","浙江","台州玉环","台州玉环",0,"171004")

citys[146]= new Array(" ├-台州温岭","浙江","台州温岭","台州温岭",0,"171005")

citys[147]= new Array(" ├-台州临海","浙江","台州临海","台州临海",0,"171006")

citys[148]= new Array(" ├-台州天台","浙江","台州天台","台州天台",0,"171007")

citys[149]= new Array(" ├-台州三门","浙江","台州三门","台州三门",0,"171008")

citys[150]= new Array(" ├-台州仙居","浙江","台州仙居","台州仙居",0,"171009")

citys[151]= new Array("├-丽水","浙江","丽水","丽水",0,"1711")

/**江苏*/

citys[152]= new Array("江苏-不限","江苏","江苏","江苏",1,"18")

citys[153]= new Array("├-南京","江苏","南京","南京",0,"1801")

citys[154]= new Array("├-徐州","江苏","徐州","徐州",0,"1802")

citys[155]= new Array("├-连云港","江苏","连云港","连云港",0,"1803")

citys[156]= new Array("├-淮安","江苏","淮安","淮安",0,"1804")

citys[157]= new Array("├-宿迁","江苏","宿迁","宿迁",0,"1805")

citys[158]= new Array("├-盐城","江苏","盐城","盐城",0,"1806")

citys[159]= new Array("├-扬州","江苏","扬州","扬州",0,"1807")

citys[160]= new Array("├-泰州","江苏","泰州","泰州",0,"1808")

citys[161]= new Array("├-南通","江苏","南通","南通",0,"1809")

citys[162]= new Array("├-镇江","江苏","镇江","镇江",0,"1810")

citys[163]= new Array("├-常州","江苏","常州","常州",0,"1811")

citys[164]= new Array("├-无锡","江苏","无锡","无锡",0,"1812")

citys[165]= new Array(" ├-无锡昆山","江苏","无锡昆山","无锡昆山",0,"181201")

citys[166]= new Array("├-苏州","江苏","苏州","苏州",0,"1813")

/**山东*/

citys[167]= new Array("山东-不限","山东","山东","山东",1,"19")

citys[168]= new Array("├-济南","山东","济南","济南",0,"1901")

citys[169]= new Array("├-青岛","山东","青岛","青岛",0,"1902")

citys[170]= new Array("├-淄博","山东","淄博","淄博",0,"1903")

citys[171]= new Array("├-枣庄","山东","枣庄","枣庄",0,"1904")

citys[172]= new Array("├-东营","山东","东营","东营",0,"1905")

citys[173]= new Array("├-潍坊","山东","潍坊","潍坊",0,"1906")

citys[174]= new Array("├-烟台","山东","烟台","烟台",0,"1907")

citys[175]= new Array("├-威海","山东","威海","威海",0,"1908")

citys[176]= new Array("├-济宁","山东","济宁","济宁",0,"1909")

citys[177]= new Array("├-泰安","山东","泰安","泰安",0,"1910")

citys[178]= new Array("├-日照","山东","日照","日照",0,"1911")

citys[179]= new Array("├-莱芜","山东","莱芜","莱芜",0,"1912")

citys[180]= new Array("├-德州","山东","德州","德州",0,"1913")

citys[181]= new Array("├-临沂","山东","临沂","临沂",0,"1914")

citys[182]= new Array("├-聊城","山东","聊城","聊城",0,"1915")

citys[183]= new Array("├-滨州","山东","滨州","滨州",0,"1916")

citys[184]= new Array("├-菏泽","山东","菏泽","菏泽",0,"1917")

/**辽宁*/

citys[185]= new Array("辽宁-不限","辽宁","辽宁","辽宁",1,"20")

citys[186]= new Array("├-沈阳","辽宁","沈阳","沈阳",0,"2001")

citys[187]= new Array("├-大连","辽宁","大连","大连",0,"2002")

citys[188]= new Array("├-鞍山","辽宁","鞍山","鞍山",0,"2003")

citys[189]= new Array("├-抚顺","辽宁","抚顺","抚顺",0,"2004")

citys[190]= new Array("├-本溪","辽宁","本溪","本溪",0,"2005")

citys[191]= new Array("├-丹东","辽宁","丹东","丹东",0,"2006")

citys[192]= new Array("├-锦州","辽宁","锦州","锦州",0,"2007")

citys[193]= new Array("├-葫芦岛","辽宁","葫芦岛","葫芦岛",0,"2008")

citys[194]= new Array("├-营口","辽宁","营口","营口",0,"2009")

citys[195]= new Array("├-盘锦","辽宁","盘锦","盘锦",0,"2010")

citys[196]= new Array("├-阜新","辽宁","阜新","阜新",0,"2011")

citys[197]= new Array("├-辽阳","辽宁","辽阳","辽阳",0,"2012")

citys[198]= new Array("├-铁岭","辽宁","铁岭","铁岭",0,"2013")

citys[199]= new Array("├-朝阳","辽宁","朝阳","朝阳",0,"2014")

/**江西*/

citys[200]= new Array("江西-不限","江西","江西","江西",1,"21")

citys[201]= new Array("├-南昌","江西","南昌","南昌",0,"2101")

citys[202]= new Array("├-景德镇","江西","景德镇","景德镇",0,"2102")

citys[203]= new Array("├-萍乡","江西","萍乡","萍乡",0,"2103")

citys[204]= new Array("├-新余","江西","新余","新余",0,"2104")

citys[205]= new Array("├-九江","江西","九江","九江",0,"2105")

citys[206]= new Array("├-鹰潭","江西","鹰潭","鹰潭",0,"2106")

citys[207]= new Array("├-赣州","江西","赣州","赣州",0,"2107")

citys[208]= new Array("├-吉安","江西","吉安","吉安",0,"2108")

citys[209]= new Array("├-宜春","江西","宜春","宜春",0,"2109")

citys[210]= new Array("├-抚州","江西","抚州","抚州",0,"2110")

citys[211]= new Array("├-上饶","江西","上饶","上饶",0,"2111")

/**四川*/

citys[212]= new Array("四川-不限","四川","四川","四川",1,"22")

citys[213]= new Array("├-成都","四川","成都","成都",0,"2201")

citys[214]= new Array("├-自贡","四川","自贡","自贡",0,"2202")

citys[215]= new Array("├-攀枝花","四川","攀枝花","攀枝花",0,"2203")

citys[216]= new Array("├-泸州","四川","泸州","泸州",0,"2204")

citys[217]= new Array("├-德阳","四川","德阳","德阳",0,"2205")

citys[218]= new Array("├-绵阳","四川","绵阳","绵阳",0,"2206")

citys[219]= new Array("├-广元","四川","广元","广元",0,"2207")

citys[220]= new Array("├-遂宁","四川","遂宁","遂宁",0,"2208")

citys[221]= new Array("├-内江","四川","内江","内江",0,"2209")

citys[222]= new Array("├-乐山","四川","乐山","乐山",0,"2210")

citys[223]= new Array("├-南充","四川","南充","南充",0,"2211")

citys[224]= new Array("├-宜宾","四川","宜宾","宜宾",0,"2212")

citys[225]= new Array("├-广安","四川","广安","广安",0,"2213")

citys[226]= new Array("├-达州","四川","达州","达州",0,"2214")

citys[227]= new Array("├-巴中","四川","巴中","巴中",0,"2215")

citys[228]= new Array("├-雅安","四川","雅安","雅安",0,"2216")

citys[229]= new Array("├-眉山","四川","眉山","眉山",0,"2217")

citys[230]= new Array("├-资阳","四川","资阳","资阳",0,"2218")

citys[231]= new Array("├-阿坝州","四川","阿坝州","阿坝州",0,"2219")

citys[232]= new Array("├-甘孜州","四川","甘孜州","甘孜州",0,"2220")

citys[233]= new Array("├-凉山州","四川","凉山州","凉山州",0,"2221")

/**陕西*/

citys[234]= new Array("陕西-不限","陕西","陕西","陕西",1,"23")

citys[235]= new Array("├-西安","陕西","西安","西安",0,"2301")

citys[236]= new Array("├-铜川","陕西","铜川","铜川",0,"2302")

citys[237]= new Array("├-宝鸡","陕西","宝鸡","宝鸡",0,"2303")

citys[238]= new Array("├-咸阳","陕西","咸阳","咸阳",0,"2304")

citys[239]= new Array("├-渭南","陕西","渭南","渭南",0,"2305")

citys[240]= new Array("├-延安","陕西","延安","延安",0,"2306")

citys[241]= new Array("├-汉中","陕西","汉中","汉中",0,"2307")

citys[242]= new Array("├-榆林","陕西","榆林","榆林",0,"2308")

citys[243]= new Array("├-安康","陕西","安康","安康",0,"2309")

citys[244]= new Array("├-商洛","陕西","商洛","商洛",0,"2310")

/**湖北*/

citys[245]= new Array("湖北-不限","湖北","湖北","湖北",1,"24")

citys[246]= new Array("├-武汉","湖北","武汉","武汉",0,"2401")

citys[247]= new Array("├-黄石","湖北","黄石","黄石",0,"2402")

citys[248]= new Array("├-襄樊","湖北","襄樊","襄樊",0,"2403")

citys[249]= new Array("├-十堰","湖北","十堰","十堰",0,"2404")

citys[250]= new Array("├-荆州","湖北","荆州","荆州",0,"2405")

citys[251]= new Array("├-宜昌","湖北","宜昌","宜昌",0,"2406")

citys[252]= new Array("├-荆门","湖北","荆门","荆门",0,"2407")

citys[253]= new Array("├-鄂州","湖北","鄂州","鄂州",0,"2408")

citys[254]= new Array("├-孝感","湖北","孝感","孝感",0,"2409")

citys[255]= new Array("├-黄冈","湖北","黄冈","黄冈",0,"2410")

citys[256]= new Array("├-咸宁","湖北","咸宁","咸宁",0,"2411")

citys[257]= new Array("├-随州","湖北","随州","随州",0,"2412")

citys[258]= new Array("├-仙桃","湖北","仙桃","仙桃",0,"2413")

citys[259]= new Array("├-天门","湖北","天门","天门",0,"2414")

citys[260]= new Array("├-潜江","湖北","潜江","潜江",0,"2415")

citys[261]= new Array("├-神农架","湖北","神农架","神农架",0,"2416")

citys[262]= new Array("├-恩施州","湖北","恩施州","恩施州",0,"2417")

/**河南*/

citys[263]= new Array("河南-不限","河南","河南","河南",1,"25")

citys[264]= new Array("├-郑州","河南","郑州","郑州",0,"2501")

citys[265]= new Array("├-开封","河南","开封","开封",0,"2502")

citys[266]= new Array("├-洛阳","河南","洛阳","洛阳",0,"2503")

citys[267]= new Array("├-平顶山","河南","平顶山","平顶山",0,"2504")

citys[268]= new Array("├-焦作","河南","焦作","焦作",0,"2505")

citys[269]= new Array("├-鹤壁","河南","鹤壁","鹤壁",0,"2506")

citys[270]= new Array("├-新乡","河南","新乡","新乡",0,"2507")

citys[271]= new Array("├-安阳","河南","安阳","安阳",0,"2508")

citys[272]= new Array("├-濮阳","河南","濮阳","濮阳",0,"2509")

citys[273]= new Array("├-许昌","河南","许昌","许昌",0,"2510")

citys[274]= new Array("├-漯河","河南","漯河","漯河",0,"2511")

citys[275]= new Array("├-三门峡","河南","三门峡","三门峡",0,"2512")

citys[276]= new Array("├-南阳","河南","南阳","南阳",0,"2513")

citys[277]= new Array("├-商丘","河南","商丘","商丘",0,"2514")

citys[278]= new Array("├-信阳","河南","信阳","信阳",0,"2515")

citys[279]= new Array("├-周口","河南","周口","周口",0,"2516")

citys[280]= new Array("├-驻马店","河南","驻马店","驻马店",0,"2517")

citys[281]= new Array("├-济源","河南","济源","济源",0,"2518")

/**河北*/

citys[282]= new Array("河北-不限","河北","河北","河北",1,"26")

citys[283]= new Array("├-石家庄","河北","石家庄","石家庄",0,"2601")

citys[284]= new Array("├-唐山","河北","唐山","唐山",0,"2602")

citys[285]= new Array("├-秦皇岛","河北","秦皇岛","秦皇岛",0,"2603")

citys[286]= new Array("├-邯郸","河北","邯郸","邯郸",0,"2604")

citys[287]= new Array("├-邢台","河北","邢台","邢台",0,"2605")

citys[288]= new Array("├-保定","河北","保定","保定",0,"2606")

citys[289]= new Array("├-张家口","河北","张家口","张家口",0,"2607")

citys[290]= new Array("├-承德","河北","承德","承德",0,"2608")

citys[291]= new Array("├-沧州","河北","沧州","沧州",0,"2609")

citys[292]= new Array("├-廊坊","河北","廊坊","廊坊",0,"2610")

citys[293]= new Array("├-衡水","河北","衡水","衡水",0,"2611")

/**山西*/

citys[294]= new Array("山西-不限","山西","山西","山西",1,"27")

citys[295]= new Array("├-太原","山西","太原","太原",0,"2701")

citys[296]= new Array("├-大同","山西","大同","大同",0,"2702")

citys[297]= new Array("├-阳泉","山西","阳泉","阳泉",0,"2703")

citys[298]= new Array("├-长治","山西","长治","长治",0,"2704")

citys[299]= new Array("├-晋城","山西","晋城","晋城",0,"2705")

citys[300]= new Array("├-朔州","山西","朔州","朔州",0,"2706")

citys[301]= new Array("├-晋中","山西","晋中","晋中",0,"2707")

citys[302]= new Array("├-忻州","山西","忻州","忻州",0,"2708")

citys[303]= new Array("├-临汾","山西","临汾","临汾",0,"2709")

citys[304]= new Array("├-运城","山西","运城","运城",0,"2710")

citys[305]= new Array("├-吕梁","山西","吕梁","吕梁",0,"2711")

/**内蒙古*/

citys[306]= new Array("内蒙古-不限","内蒙古","内蒙古","内蒙古",1,"28")

citys[307]= new Array("├-呼和浩特","内蒙古","呼和浩特","呼和浩特",0,"2801")

citys[308]= new Array("├-包头","内蒙古","包头","包头",0,"2802")

citys[309]= new Array("├-乌海","内蒙古","乌海","乌海",0,"2803")

citys[310]= new Array("├-赤峰","内蒙古","赤峰","赤峰",0,"2804")

citys[311]= new Array("├-通辽","内蒙古","通辽","通辽",0,"2805")

citys[312]= new Array("├-鄂尔多斯","内蒙古","鄂尔多斯","鄂尔多斯",0,"2806")

citys[313]= new Array("├-乌兰察布","内蒙古","乌兰察布","乌兰察布",0,"2807")

citys[314]= new Array("├-锡林郭勒","内蒙古","锡林郭勒","锡林郭勒",0,"2808")

citys[315]= new Array("├-呼伦贝尔","内蒙古","呼伦贝尔","呼伦贝尔",0,"2809")

citys[316]= new Array("├-巴彦淖尔","内蒙古","巴彦淖尔","巴彦淖尔",0,"2810")

citys[317]= new Array("├-阿拉善盟","内蒙古","阿拉善盟","阿拉善盟",0,"2811")

citys[318]= new Array("├-兴安盟","内蒙古","兴安盟","兴安盟",0,"2812")

/**吉林*/

citys[319]= new Array("吉林-不限","吉林","吉林","吉林",1,"29")

citys[320]= new Array("├-长春","吉林","长春","长春",0,"2901")

citys[321]= new Array("├-吉林市","吉林","吉林市","吉林市",0,"2902")

citys[322]= new Array("├-四平","吉林","四平","四平",0,"2903")

citys[323]= new Array("├-辽源","吉林","辽源","辽源",0,"2904")

citys[324]= new Array("├-通化","吉林","通化","通化",0,"2905")

citys[325]= new Array("├-白山","吉林","白山","白山",0,"2906")

citys[326]= new Array("├-松原","吉林","松原","松原",0,"2907")

citys[327]= new Array("├-白城","吉林","白城","白城",0,"2908")

citys[328]= new Array("├-延边州","吉林","延边州","延边州",0,"2909")

/**黑龙江*/

citys[329]= new Array("黑龙江-不限","黑龙江","黑龙江","黑龙江",1,"30")

citys[330]= new Array("├-哈尔滨","黑龙江","哈尔滨","哈尔滨",0,"3001")

citys[331]= new Array("├-齐齐哈尔","黑龙江","齐齐哈尔","齐齐哈尔",0,"3002")

citys[332]= new Array("├-鹤岗","黑龙江","鹤岗","鹤岗",0,"3003")

citys[333]= new Array("├-双鸭山","黑龙江","双鸭山","双鸭山",0,"3004")

citys[334]= new Array("├-鸡西","黑龙江","鸡西","鸡西",0,"3005")

citys[335]= new Array("├-大庆","黑龙江","大庆","大庆",0,"3006")

citys[336]= new Array("├-伊春","黑龙江","伊春","伊春",0,"3007")

citys[337]= new Array("├-牡丹江","黑龙江","牡丹江","牡丹江",0,"3008")

citys[338]= new Array("├-佳木斯","黑龙江","佳木斯","佳木斯",0,"3009")

citys[339]= new Array("├-七台河","黑龙江","七台河","七台河",0,"3010")

citys[340]= new Array("├-黑河","黑龙江","黑河","黑河",0,"3011")

citys[341]= new Array("├-绥化","黑龙江","绥化","绥化",0,"3012")

citys[342]= new Array("├-大兴安岭","黑龙江","大兴安岭","大兴安岭",0,"3013")

/**安徽*/

citys[343]= new Array("安徽-不限","安徽","安徽","安徽",1,"31")

citys[344]= new Array("├-合肥","安徽","合肥","合肥",0,"3101")

citys[345]= new Array("├-芜湖","安徽","芜湖","芜湖",0,"3102")

citys[346]= new Array("├-蚌埠","安徽","蚌埠","蚌埠",0,"3103")

citys[347]= new Array("├-淮南","安徽","淮南","淮南",0,"3104")

citys[348]= new Array("├-马鞍山","安徽","马鞍山","马鞍山",0,"3105")

citys[349]= new Array("├-淮北","安徽","淮北","淮北",0,"3106")

citys[350]= new Array("├-铜陵","安徽","铜陵","铜陵",0,"3107")

citys[351]= new Array("├-安庆","安徽","安庆","安庆",0,"3108")

citys[352]= new Array("├-黄山","安徽","黄山","黄山",0,"3109")

citys[353]= new Array("├-滁州","安徽","滁州","滁州",0,"3110")

citys[354]= new Array("├-阜阳","安徽","阜阳","阜阳",0,"3111")

citys[355]= new Array("├-宿州","安徽","宿州","宿州",0,"3112")

citys[356]= new Array("├-巢湖","安徽","巢湖","巢湖",0,"3113")

citys[357]= new Array("├-六安","安徽","六安","六安",0,"3114")

citys[358]= new Array("├-亳州","安徽","亳州","亳州",0,"3115")

citys[359]= new Array("├-宣城","安徽","宣城","宣城",0,"3116")

citys[360]= new Array("├-池州","安徽","池州","池州",0,"3117")

/**湖南*/

citys[361]= new Array("湖南-不限","湖南","湖南","湖南",1,"32")

citys[362]= new Array("├-长沙","湖南","长沙","长沙",0,"3201")

citys[363]= new Array("├-株州","湖南","株州","株州",0,"3202")

citys[364]= new Array("├-湘潭","湖南","湘潭","湘潭",0,"3203")

citys[365]= new Array("├-衡阳","湖南","衡阳","衡阳",0,"3204")

citys[366]= new Array("├-邵阳","湖南","邵阳","邵阳",0,"3205")

citys[367]= new Array("├-岳阳","湖南","岳阳","岳阳",0,"3206")

citys[368]= new Array("├-常德","湖南","常德","常德",0,"3207")

citys[369]= new Array("├-张家界","湖南","张家界","张家界",0,"3208")

citys[370]= new Array("├-益阳","湖南","益阳","益阳",0,"3209")

citys[371]= new Array("├-郴州","湖南","郴州","郴州",0,"3210")

citys[372]= new Array("├-永州","湖南","永州","永州",0,"3211")

citys[373]= new Array("├-怀化","湖南","怀化","怀化",0,"3212")

citys[374]= new Array("├-娄底","湖南","娄底","娄底",0,"3213")

citys[375]= new Array("├-湘西州","湖南","湘西州","湘西州",0,"3214")

/**广西*/

citys[376]= new Array("广西-不限","广西","广西","广西",1,"33")

citys[377]= new Array("├-南宁","广西","南宁","南宁",0,"3310")

citys[378]= new Array("├-柳州","广西","柳州","柳州",0,"3311")

citys[379]= new Array("├-桂林","广西","桂林","桂林",0,"3303")

citys[380]= new Array("├-梧州","广西","梧州","梧州",0,"3304")

citys[381]= new Array("├-北海","广西","北海","北海",0,"3305")

citys[382]= new Array("├-防城港","广西","防城港","防城港",0,"3306")

citys[383]= new Array("├-钦州","广西","钦州","钦州",0,"3307")

citys[384]= new Array("├-贵港","广西","贵港","贵港",0,"3308")

citys[385]= new Array("├-玉林","广西","玉林","玉林",0,"3309")

citys[386]= new Array("├-来宾","广西","来宾","来宾",0,"3301")

citys[387]= new Array("├-崇左","广西","崇左","崇左",0,"3302")

citys[388]= new Array("├-贺州","广西","贺州","贺州",0,"3312")

citys[389]= new Array("├-百色","广西","百色","百色",0,"3313")

citys[390]= new Array("├-河池","广西","河池","河池",0,"3314")

/**海南*/

citys[391]= new Array("海南-不限","海南","海南","海南",1,"34")

citys[392]= new Array("├-海口","海南","海口","海口",0,"3401")

citys[393]= new Array("├-三亚","海南","三亚","三亚",0,"3402")

citys[394]= new Array("├-五指山","海南","五指山","五指山",0,"3403")

citys[395]= new Array("├-琼海","海南","琼海","琼海",0,"3404")

citys[396]= new Array("├-儋州","海南","儋州","儋州",0,"3405")

citys[397]= new Array("├-琼山","海南","琼山","琼山",0,"3406")

citys[398]= new Array("├-文昌","海南","文昌","文昌",0,"3407")

citys[399]= new Array("├-万宁","海南","万宁","万宁",0,"3408")

citys[400]= new Array("├-东方","海南","东方","东方",0,"3409")

citys[401]= new Array("├-澄迈","海南","澄迈","澄迈",0,"3410")

citys[402]= new Array("├-定安","海南","定安","定安",0,"3411")

citys[403]= new Array("├-屯昌","海南","屯昌","屯昌",0,"3412")

citys[404]= new Array("├-临高","海南","临高","临高",0,"3413")

citys[405]= new Array("├-白沙","海南","白沙","白沙",0,"3414")

citys[406]= new Array("├-昌江","海南","昌江","昌江",0,"3415")

citys[407]= new Array("├-乐东","海南","乐东","乐东",0,"3416")

citys[408]= new Array("├-陵水","海南","陵水","陵水",0,"3417")

citys[409]= new Array("├-保亭","海南","保亭","保亭",0,"3418")

citys[410]= new Array("├-琼中","海南","琼中","琼中",0,"3419")

/**云南*/

citys[411]= new Array("云南-不限","云南","云南","云南",1,"35")

citys[412]= new Array("├-昆明","云南","昆明","昆明",0,"3501")

citys[413]= new Array("├-曲靖","云南","曲靖","曲靖",0,"3502")

citys[414]= new Array("├-玉溪","云南","玉溪","玉溪",0,"3503")

citys[415]= new Array("├-保山","云南","保山","保山",0,"3504")

citys[416]= new Array("├-昭通","云南","昭通","昭通",0,"3505")

citys[417]= new Array("├-思茅","云南","思茅","思茅",0,"3506")

citys[418]= new Array("├-临沧","云南","临沧","临沧",0,"3507")

citys[419]= new Array("├-丽江","云南","丽江","丽江",0,"3508")

citys[420]= new Array("├-文山州","云南","文山州","文山州",0,"3509")

citys[421]= new Array("├-红河州","云南","红河州","红河州",0,"3510")

citys[422]= new Array("├-西双版纳","云南","西双版纳","西双版纳",0,"3511")

citys[423]= new Array("├-楚雄州","云南","楚雄州","楚雄州",0,"3512")

citys[424]= new Array("├-大理州","云南","大理州","大理州",0,"3513")

citys[425]= new Array("├-德宏州","云南","德宏州","德宏州",0,"3514")

citys[426]= new Array("├-怒江州","云南","怒江州","怒江州",0,"3515")

citys[427]= new Array("├-迪庆州","云南","迪庆州","迪庆州",0,"3516")

/**贵州*/

citys[428]= new Array("贵州-不限","贵州","贵州","贵州",1,"36")

citys[429]= new Array("├-贵阳","贵州","贵阳","贵阳",0,"3601")

citys[430]= new Array("├-六盘水","贵州","六盘水","六盘水",0,"3602")

citys[431]= new Array("├-遵义","贵州","遵义","遵义",0,"3603")

citys[432]= new Array("├-安顺","贵州","安顺","安顺",0,"3604")

citys[433]= new Array("├-铜仁","贵州","铜仁","铜仁",0,"3605")

citys[434]= new Array("├-毕节","贵州","毕节","毕节",0,"3606")

citys[435]= new Array("├-黔西南州","贵州","黔西南州","黔西南州",0,"3607")

citys[436]= new Array("├-黔东南州","贵州","黔东南州","黔东南州",0,"3608")

citys[437]= new Array("├-黔南州","贵州","黔南州","黔南州",0,"3609")

/**西藏*/

citys[438]= new Array("西藏-不限","西藏","西藏","西藏",1,"37")

citys[439]= new Array("├-拉萨","西藏","拉萨","拉萨",0,"3701")

citys[440]= new Array("├-那曲","西藏","那曲","那曲",0,"3702")

citys[441]= new Array("├-昌都","西藏","昌都","昌都",0,"3703")

citys[442]= new Array("├-山南","西藏","山南","山南",0,"3704")

citys[443]= new Array("├-日喀则","西藏","日喀则","日喀则",0,"3705")

citys[444]= new Array("├-阿里","西藏","阿里","阿里",0,"3706")

citys[445]= new Array("├-林芝","西藏","林芝","林芝",0,"3707")

/**甘肃*/

citys[446]= new Array("甘肃-不限","甘肃","甘肃","甘肃",1,"38")

citys[447]= new Array("├-兰州","甘肃","兰州","兰州",0,"3801")

citys[448]= new Array("├-金昌","甘肃","金昌","金昌",0,"3802")

citys[449]= new Array("├-白银","甘肃","白银","白银",0,"3803")

citys[450]= new Array("├-天水","甘肃","天水","天水",0,"3804")

citys[451]= new Array("├-嘉峪关","甘肃","嘉峪关","嘉峪关",0,"3805")

citys[452]= new Array("├-武威","甘肃","武威","武威",0,"3806")

citys[453]= new Array("├-定西","甘肃","定西","定西",0,"3807")

citys[454]= new Array("├-平凉","甘肃","平凉","平凉",0,"3808")

citys[455]= new Array("├-庆阳","甘肃","庆阳","庆阳",0,"3809")

citys[456]= new Array("├-陇南","甘肃","陇南","陇南",0,"3810")

citys[457]= new Array("├-张掖","甘肃","张掖","张掖",0,"3811")

citys[458]= new Array("├-酒泉","甘肃","酒泉","酒泉",0,"3812")

citys[459]= new Array("├-甘南州","甘肃","甘南州","甘南州",0,"3813")

citys[460]= new Array("├-临夏州","甘肃","临夏州","临夏州",0,"3814")

/**宁夏*/

citys[461]= new Array("宁夏-不限","宁夏","宁夏","宁夏",1,"39")

citys[462]= new Array("├-银川","宁夏","银川","银川",0,"3901")

citys[463]= new Array("├-石嘴山","宁夏","石嘴山","石嘴山",0,"3902")

citys[464]= new Array("├-吴忠","宁夏","吴忠","吴忠",0,"3903")

citys[465]= new Array("├-固原","宁夏","固原","固原",0,"3904")

/**青海*/

citys[466]= new Array("青海-不限","青海","青海","青海",1,"40")

citys[467]= new Array("├-西宁","青海","西宁","西宁",0,"4001")

citys[468]= new Array("├-海东","青海","海东","海东",0,"4002")

citys[469]= new Array("├-海北州","青海","海北州","海北州",0,"4003")

citys[470]= new Array("├-黄南州","青海","黄南州","黄南州",0,"4004")

citys[471]= new Array("├-海南州","青海","海南州","海南州",0,"4005")

citys[472]= new Array("├-果洛州","青海","果洛州","果洛州",0,"4006")

citys[473]= new Array("├-玉树州","青海","玉树州","玉树州",0,"4007")

citys[474]= new Array("├-海西州","青海","海西州","海西州",0,"4008")

/**新疆*/

citys[475]= new Array("新疆-不限","新疆","新疆","新疆",1,"41")

citys[476]= new Array("├-乌鲁木齐","新疆","乌鲁木齐","乌鲁木齐",0,"4101")

citys[477]= new Array("├-克拉玛依","新疆","克拉玛依","克拉玛依",0,"4102")

citys[478]= new Array("├-石河子","新疆","石河子","石河子",0,"4103")

citys[479]= new Array("├-吐鲁番","新疆","吐鲁番","吐鲁番",0,"4104")

citys[480]= new Array("├-哈密","新疆","哈密","哈密",0,"4105")

citys[481]= new Array("├-和田","新疆","和田","和田",0,"4106")

citys[482]= new Array("├-阿克苏","新疆","阿克苏","阿克苏",0,"4107")

citys[483]= new Array("├-喀什","新疆","喀什","喀什",0,"4108")

citys[484]= new Array("├-克孜勒苏","新疆","克孜勒苏","克孜勒苏",0,"4109")

citys[485]= new Array("├-巴音郭楞","新疆","巴音郭楞","巴音郭楞",0,"4110")

citys[486]= new Array("├-昌吉州","新疆","昌吉州","昌吉州",0,"4111")

citys[487]= new Array("├-博尔塔拉","新疆","博尔塔拉","博尔塔拉",0,"4112")

citys[488]= new Array("├-伊犁州","新疆","伊犁州","伊犁州",0,"4113")

/**香港*/

citys[489]= new Array("香港-不限","香港","香港","香港",1,"42")

citys[490]= new Array("├-中西区","香港","中西区","中西区",0,"4201")

citys[491]= new Array("├-东区","香港","东区","东区",0,"4202")

citys[492]= new Array("├-九龙城区","香港","九龙城区","九龙城区",0,"4203")

citys[493]= new Array("├-观塘区","香港","观塘区","观塘区",0,"4204")

citys[494]= new Array("├-南区","香港","南区","南区",0,"4205")

citys[495]= new Array("├-深水?区","香港","深水?区","深水?区",0,"4206")

citys[496]= new Array("├-湾仔区","香港","湾仔区","湾仔区",0,"4207")

citys[497]= new Array("├-黄大仙区","香港","黄大仙区","黄大仙区",0,"4208")

citys[498]= new Array("├-油尖旺区","香港","油尖旺区","油尖旺区",0,"4209")

citys[499]= new Array("├-离岛区","香港","离岛区","离岛区",0,"4210")

citys[500]= new Array("├-葵青区","香港","葵青区","葵青区",0,"4211")

citys[501]= new Array("├-北区","香港","北区","北区",0,"4212")

citys[502]= new Array("├-西贡区","香港","西贡区","西贡区",0,"4213")

citys[503]= new Array("├-沙田区","香港","沙田区","沙田区",0,"4214")

citys[504]= new Array("├-屯门区","香港","屯门区","屯门区",0,"4215")

citys[505]= new Array("├-大埔区","香港","大埔区","大埔区",0,"4216")

citys[506]= new Array("├-荃湾区","香港","荃湾区","荃湾区",0,"4217")

citys[507]= new Array("├-元朗区","香港","元朗区","元朗区",0,"4218")

/**澳门*/

citys[508]= new Array("澳门-不限","澳门","澳门","澳门",1,"43")

citys[509]= new Array("├-澳门","澳门","澳门","澳门",0,"43")

/**台湾*/

citys[510]= new Array("台湾-不限","台湾","台湾","台湾",1,"44")

citys[511]= new Array("├-台北市","台湾","台北市","台北市",0,"4401")

citys[512]= new Array("├-高雄市","台湾","高雄市","高雄市",0,"4402")

citys[513]= new Array("├-基隆市","台湾","基隆市","基隆市",0,"4403")

citys[514]= new Array("├-台中市","台湾","台中市","台中市",0,"4404")

citys[515]= new Array("├-台南市","台湾","台南市","台南市",0,"4405")

citys[516]= new Array("├-新竹市","台湾","新竹市","新竹市",0,"4406")

citys[517]= new Array("├-嘉义市","台湾","嘉义市","嘉义市",0,"4407")

citys[518]= new Array("├-台北县","台湾","台北县","台北县",0,"4408")

citys[519]= new Array("├-宜兰县","台湾","宜兰县","宜兰县",0,"4409")

citys[520]= new Array("├-新竹县","台湾","新竹县","新竹县",0,"4410")

citys[521]= new Array("├-桃园县","台湾","桃园县","桃园县",0,"4411")

citys[522]= new Array("├-苗栗县","台湾","苗栗县","苗栗县",0,"4412")

citys[523]= new Array("├-台中县","台湾","台中县","台中县",0,"4413")

citys[524]= new Array("├-彰化县","台湾","彰化县","彰化县",0,"4414")

citys[525]= new Array("├-南投县","台湾","南投县","南投县",0,"4415")

citys[526]= new Array("├-嘉义县","台湾","嘉义县","嘉义县",0,"4416")

citys[527]= new Array("├-云林县","台湾","云林县","云林县",0,"4417")

citys[528]= new Array("├-台南县","台湾","台南县","台南县",0,"4418")

citys[529]= new Array("├-高雄县","台湾","高雄县","高雄县",0,"4419")

citys[530]= new Array("├-屏东县","台湾","屏东县","屏东县",0,"4420")

citys[531]= new Array("├-台东县","台湾","台东县","台东县",0,"4421")

citys[532]= new Array("├-花莲县","台湾","花莲县","花莲县",0,"4422")

citys[533]= new Array("├-澎湖县","台湾","澎湖县","澎湖县",0,"4423")

/**国外*/

citys[534]= new Array("国外-不限","国外","国外","国外",1,"45")

citys[535]= new Array("├-国外","国外","国外","国外",0,"45")

<SCRIPT language=javascript type=text/javascript>

/**下拉菜单选择*/

function selectOnchange(mainitem,subitem,catalog)

{

setSubSelectItem(catalog,mainitem,subitem);

}

function setSubSelectItem(catalog,mainitem,subitem)

{

var itemCount;

var items = new Array();

var filterStr='北京天津上海重庆';

var subvalue=mainitem.options[mainitem.selectedIndex].value;

if(catalog=='jobcatelog')

{

subitem.length = 0;

itemCount = catelogCount;

items = catelogs;

var opt=document.createElement("OPTION");

if((subvalue == ''))

{

with(opt)

{

text="不限";

value="";

style.color="navy";

}

subitem.add(opt);

}

for (i=0;i<itemCount; i++)

{

if ((items[2]).substring(0,2) == subvalue.substring(0,2))

{

var opt=document.createElement("OPTION");

opt.text=items[0];

opt.value=items[2];

subitem.add(opt);

}

}

}

else if(catalog=='citys1')

{

subitem.length = 0;

itemCount = cityCount;

items = citys;

var opt=document.createElement("OPTION");

if((subvalue == ''))

{

with(opt)

{

text="不限";

value="";

}

subitem.add(opt);

}

for (i=0;i < itemCount; i++)

{

if (items[1] == subvalue)

{

var opt=document.createElement("OPTION");

opt.text=items[0];

opt.value=items[2];

subitem.add(opt);

}

}

}

}

/**使对象得到焦点*/

function objFocus(obj)

{

if(event.keyCode==9)

{

obj.focus();

}

}

//-->

</SCRIPT>

调用代码:

<tr>

<td width=91>岗位类别<span

style="font-size: 12px; font-family: verdana">:</span></td>

<td width=450>

<select style="width: 150px" [color=red] name=[color=green]jobMainCatalogry>

<option value=00 selected>-------请选择------</option>

[color=red]<script language="javascript">writeJobs();</script> </select>

<select class=fieldhz id=station style="width: 180px" name=[color=green]jobfunction>

<option value=0 selected>------请选择-----</option>

</select>

</td>

</tr>

<tr>

<td width=91 bgcolor=#f6f6f6>工作地点<span style="font-size: 12px; font-family: verdana">:</span>

</td>

<td width=450 bgcolor=#f6f6f6>

<select style="width: 120px"[color=red] name=[color=green]province>

[color=red]<script language="javascript"> writeCitys();</script> </select>

<select class=fieldhz

id=locus style="width: 100px" name=[color=green]workplace> <option

value=00 selected>不限</option></select> </font></td></tr>

<tr>/*******************************************************************

*输出全国各省辖市下拉列表项writeCitys()

*输出企业性质下拉列表项writeProperity()

*输出工作岗位类别下拉列表项writeJobs()

*输出行业类别下拉列表项writeCalling()

*输出学历下拉列表项writeDegree()

*输出更新时间下拉列表项writeUpdateDate()

*Date:2004-06-28

*Author:Lzj.Liu

*******************************************************************/

/**输出全国各省辖市下拉列表项*/

function writeCitys()

{

with(document)

{

write("<option value='0' selected>地区不限</option>");

write("<option value='北京'>北京市</option>");

write("<option value='上海'>上海市</option>");

write("<option value='天津'>天津市</option>");

write("<option value='重庆'>重庆市</option>");

write("<option value='广东'>广东省</option>");

write("<option value='江苏'>江苏省</option>");

write("<option value='浙江'>浙江省</option>");

write("<option value='福建'>福建省</option>");

write("<option value='湖南'>湖南省</option>");

write("<option value='湖北'>湖北省</option>");

write("<option value='山东'>山东省</option>");

write("<option value='辽宁'>辽宁省</option>");

write("<option value='吉林'>吉林省</option>");

write("<option value='云南'>云南省</option>");

write("<option value='四川'>四川省</option>");

write("<option value='安徽'>安徽省</option>");

write("<option value='江西'>江西省</option>");

write("<option value='黑龙江'>黑龙江省</option>");

write("<option value='河北'>河北省</option>");

write("<option value='陕西'>陕西省</option>");

write("<option value='海南'>海南省</option>");

write("<option value='河南'>河南省</option>");

write("<option value='山西'>山西省</option>");

write("<option value='内蒙古'>内蒙古自治区</option>");

write("<option value='广西'>广西壮族自治区</option>");

write("<option value='贵州'>贵州省</option>");

write("<option value='宁夏'>宁夏回族自治区</option>");

write("<option value='青海'>青海省</option>");

write("<option value='新疆'>新疆维吾尔自治区</option>");

write("<option value='西藏'>西藏自治区</option>");

write("<option value='甘肃'>甘肃省</option>");

write("<option value='台湾'>台湾省</option>");

write("<option value='香港'>香港特别行政区</option>");

write("<option value='澳门'>澳门特别行政区</option>");

write("<option value='国外'>国外</option>");

write("<option value='其它'>其它</option>");

}

}

/**输出企业性质下拉列表项*/

function writeProperity()

{

with(document)

{

write("<option value='1'>国有企业</option>");

write("<option value='2'>外资企业</option>");

write("<option value='3'>合资企业</option>");

write("<option value='4'>私营企业</option>");

write("<option value='5'>民营企业</option>");

write("<option value='6'>股份制企业</option>");

write("<option value='7'>集体企业</option>");

write("<option value='8'>集体事业</option>");

write("<option value='9'>乡镇企业</option>");

write("<option value='10'>行政机关</option>");

write("<option value='11'>社会团体</option>");

write("<option value='12'>事业单位</option>");

write("<option value='13'>跨国公司(集团)</option>");

write("<option value='14'>其它</option>");

}

}

/**输出工作岗位类别下拉列表项*/

function writeJobs()

{

with(document)

{

write("<option value='1000'>计算机(IT)类</option>");

write("<option value='1100'>销售类</option>");

write("<option value='4100'>市场营销/公关类</option>");

write("<option value='4200'>客户服务类</option>");

write("<option value='1200'>经营/管理类</option>");

write("<option value='1300'>財务/审(统)计类</option>");

write("<option value='1900'>公司文职类</option>");

write("<option value='3100'>行政/人事类</option>");

write("<option value='3500'>工业/工厂类</option>");

write("<option value='1500'>电子通讯/电气(器)类</option>");

write("<option value='1600'>机械(电)/仪表类</option>");

write("<option value='1400'>金融/保险/证券类</option>");

write("<option value='1800'>房地产/建筑施工类</option>");

write("<option value='2100'>广告(装潢、包装)设计类</option>");

write("<option value='2200'>文体/教育/培训类</option>");

write("<option value='2400'>卫生医疗/美容保健类</option>");

write("<option value='2600'>化工/制药类</option>");

write("<option value='1700'>能源动力类</option>");

write("<option value='2700'>宾馆饭店/餐饮旅游类</option>");

write("<option value='2800'>商店/零售服务类</option>");

write("<option value='3600'>技工/普工类</option>");

write("<option value='3700'>轻工类</option>");

write("<option value='2900'>后勤保障类</option>");

write("<option value='4300'>翻译类</option>");

write("<option value='4400'>物流/贸易/採购类</option>");

write("<option value='4500'>咨询/顾问类限</option>");

write("<option value='4600'>法律专业人员类</option>");

write("<option value='4700'>广播/影视/摄影专业类</option>");

write("<option value='4800'>编辑/发行类</option>");

write("<option value='3000'>其它类</option>");

}

}

/**输出行业类别下拉列表项*/

function writeCalling()

{

with(document)

{

write("<option value='1'>互联网、电子商务</option>");

write("<option value='2'>计算机业(软件、数据库、系统集成)</option>");

write("<option value='3'>计算机业(硬件、网络设备)</option>");

write("<option value='4'>电子、微电子技术</option>");

write("<option value='5'>通讯、电信业</option>");

write("<option value='6'>家电业</option>");

write("<option value='7'>批发零售(百货、超市、购物中心、专卖店…)</option>");

write("<option value='8'>贸易、商务、进出口</option>");

write("<option value='9'>电气</option>");

write("<option value='10'>电力、能源、矿产业</option>");

write("<option value='11'>石油、化工业</option>");

write("<option value='12'>生物project、制药、环保</option>");

write("<option value='13'>机械制造、机电设备、重工业</option>");

write("<option value='14'>汽车、摩托车</option>");

write("<option value='15'>仪器仪表、电工设备</option>");

write("<option value='16'>广告、公关、设计</option>");

//write("<option value='17'>媒体、影视制作、新闻出版</option>"); //合并到18

write("<option value='18'>艺术、文化传播、媒体、影视制作、新闻出版</option>");

write("<option value='19'>高速消费品(食品、饮料、粮油、化妆品、烟酒…)</option>");

write("<option value='20'>纺织品业(服饰、鞋类、家纺用品、皮具…)</option>");

write("<option value='21'>咨询业(顾问、会计师、审计师、法律)</option>");

write("<option value='22'>金融业(投资、保险、证券、银行、基金)</option>");

write("<option value='23'>建筑、房地产、物业管理、装潢</option>");

//write("<option value='24'>餐饮、娱乐、酒店</option>"); //合并到26

write("<option value='25'>运输、物流、快递</option>");

write("<option value='26'>旅游业、餐饮、娱乐、酒店</option>");

write("<option value='27'>办公设备、文化体育休闲用品、家居用品</option>");

write("<option value='28'>印刷、包装、造纸</option>");

write("<option value='29'>生产、制造、加工</option>");

write("<option value='30'>教育、培训、科研院所</option>");

write("<option value='31'>医疗、保健、卫生服务</option>");

write("<option value='32'>人才交流、中介</option>");

write("<option value='33'>协会、社团、政府公用事业、社区服务</option>");

write("<option value='34'>农、林、牧、副、渔业</option>");

write("<option value='36'>法律</option>"); //新增

write("<option value='35'>其它</option>");

}

}

/**输出学历下拉列表项(假设该函数有传參数,则默认选中博士,此做法主要是针对企业管理中心的简历搜索的重置)*/

function writeDegree()

{

var strSelected;

if(writeDegree.arguments.length==0)

{

strSelected="";

}

else

{

//alert(writeDegree.arguments.callee);

strSelected="selected";

}

with(document)

{

write("<option value='20'>请选择</option>");

write("<option value='20'>高中</option>");

write("<option value='30'>中专</option>");

write("<option value='40'>大专</option>");

write("<option value='50'>本科</option>");

write("<option value='60'>硕士</option>");

write("<option value='70' "+strSelected+">博士</option>");

}

}

/**输出更新时间下拉列表项*/

function writeUpdateDate()

{

with(document)

{

write("<option value='99999'>不限</option>");

write("<option value='1'>1天内</option>");

write("<option value='3'>3天内</option>");

write("<option value='7'>一周内</option>");

write("<option value='15'>半月内</option>");

write("<option value='30'>一个月内</option>");

write("<option value='90' selected>三个月内</option>");

write("<option value='183'>半年内</option>");

write("<option value='366'>一年内</option>");

}

}

/**输出时间日期下拉列表项*/

function writeMonthDate()

{

with(document)

{

write("<option value=01>01</option>");

write("<option value=02>02</option>");

write("<option value=03>03</option>");

write("<option value=04>04</option>");

write("<option value=05>05</option>");

write("<option value=06>06</option>");

write("<option value=07>07</option>");

write("<option value=08>08</option>");

write("<option value=09>09</option>");

write("<option value=10>10</option>");

write("<option value=11>11</option>");

write("<option value=12>12</option>");

}

}

function writeDayDate()

{

with(document)

{

write("<option value=01>01</option>");

write("<option value=02>02</option>");

write("<option value=03>03</option>");

write("<option value=04>04</option>");

write("<option value=05>05</option>");

write("<option value=06>06</option>");

write("<option value=07>07</option>");

write("<option value=08>08</option>");

write("<option value=09>09</option>");

write("<option value=10>10</option>");

write("<option value=11>11</option>");

write("<option value=12>12</option>");

write("<option value=13>13</option>");

write("<option value=14>14</option>");

write("<option value=15>15</option>");

write("<option value=16>16</option>");

write("<option value=17>17</option>");

write("<option value=18>18</option>");

write("<option value=19>19</option>");

write("<option value=20>20</option>");

write("<option value=21>21</option>");

write("<option value=22>22</option>");

write("<option value=23>23</option>");

write("<option value=24>24</option>");

write("<option value=25>25</option>");

write("<option value=26>26</option>");

write("<option value=27>27</option>");

write("<option value=28>28</option>");

write("<option value=29>29</option>");

write("<option value=30>30</option>");

write("<option value=31>31</option>");

}

}

/**输出外语类别下拉列表项*/

function writeForeignLanguage()

{

with(document)

{

write("<option value=10 selected>英语</option>");

write("<option value=11>日语</option>");

write("<option value=12>法语</option>");

write("<option value=13>德语</option>");

write("<option value=14>阿拉伯语</option>");

write("<option value=15>朝鲜语</option>");

write("<option value=16>西班牙语</option>");

write("<option value=17>俄语</option>");

write("<option value=18>意大利语</option>");

write("<option value=19>其它</option>");

}

}

/**输出第2-3种外语类别下拉列表项*/

function writettForeignLanguage()

{

with(document)

{

write("<option value=0 selected></option>");

write("<option value=10>英语</option>");

write("<option value=11>日语</option>");

write("<option value=12>法语</option>");

write("<option value=13>德语</option>");

write("<option value=14>阿拉伯语</option>");

write("<option value=15>朝鲜语</option>");

write("<option value=16>西班牙语</option>");

write("<option value=17>俄语</option>");

write("<option value=18>意大利语</option>");

write("<option value=19>其它</option>");

}

}

/**输出计算机水平类别下拉列表项*/

function writeComputerLevel()

{

with(document)

{

write("<option value=20>0基础</option>");

write("<option value=21>中级</option>");

write("<option value=23>高级</option>");

write("<option value=24>0基础程序猿</option>");

write("<option value=25>程序猿</option>");

write("<option value=26>高级程序猿</option>");

write("<option value=27>系统分析员</option>");

write("<option value=28>微软认证project师</option>");

write("<option value=29>高校非计算机专业二级</option>");

write("<option value=30>高校非计算机专业三级(偏软)</option>");

write("<option value=31>高校非计算机专业三级(偏硬)</option>");

}

}

/*******************************************************

*Function:工作岗位类别,工作岗位,全国各城市数组

*Date:2004-06-26

*Mender:Lzj.Liu

*Memo:

为了以后维护及扩展,城市数组添加编号

且编号与tbjob90_other.dbo.workArea中的编号同样

*******************************************************/

//工作岗位类别,工作岗位,数组

var catelogCount;

catelogs = new Array();

catelogCount=406;

/**计算机(IT)类-不限*/

catelogs[0]= new Array("计算机(IT)类-不限","Information Technology","1000",1)

catelogs[1]= new Array("技术总监CTO","Tech. Majordomo, CTO","1019",0)

catelogs[2]= new Array("信息主管/CIO","Information Majordomo, CIO","1020",0)

catelogs[3]= new Array("项目经理","Project Manager","1021",0)

catelogs[4]= new Array("数据库开发与管理(DBA)","Database Administration","1003",0)

catelogs[5]= new Array("软件project师","Software Engineering","1004",0)

catelogs[6]= new Array("硬件project师","Hardware Engineering","1005",0)

catelogs[7]= new Array("网络管理员","Network administrator","1007",0)

catelogs[8]= new Array("INTERNET/WEB/电子商务","Internet/Web/E-Commerce","1008",0)

catelogs[9]= new Array("网页设计师","Webpage Designer","1009",0)

catelogs[10]= new Array("站点策划","Web Designer","1010",0)

catelogs[11]= new Array("系统集成/技术支持","System integration, Technical Support","1011",0)

catelogs[12]= new Array("系统分析员","System Analyst","1012",0)

catelogs[13]= new Array("測试project师","Test Engineering","1013",0)

catelogs[14]= new Array("MRP/ERP/SAP实施project师","MRP/ERP Actualize Engineering","1014",0)

catelogs[15]= new Array("电脑美工","Computer Art Designer","1015",0)

catelogs[16]= new Array("站点编辑","Website Editor","1016",0)

catelogs[17]= new Array("栏目主持人","Column Emcee","1017",0)

catelogs[18]= new Array("系统维护员","System maintenace","1018",0)

catelogs[19]= new Array("其他相关职位","other","1040",0)

/**销售类-不限*/

catelogs[20]= new Array("销售类-不限","Sales","1100",1)

catelogs[21]= new Array("销售总监","Sales Majordomo","1124",0)

catelogs[22]= new Array("销售代表","Sales agent","1105",0)

catelogs[23]= new Array("销售project师","Sales Engineering","1108",0)

catelogs[24]= new Array("销售部经理","Sales manager","1112",0)

catelogs[25]= new Array("销售主管","Sales director","1116",0)

catelogs[26]= new Array("销售助理","Sales assistant","1117",0)

catelogs[27]= new Array("推(营)销员","Salesman","1118",0)

catelogs[28]= new Array("商务经理/商务专员","Commerce manager/Commerce clerk","1119",0)

catelogs[29]= new Array("渠道经理","Channel Manager","1120",0)

catelogs[30]= new Array("渠道主管","Channel director","1121",0)

catelogs[31]= new Array("区域销售经理","District Sales manager","1122",0)

catelogs[32]= new Array("分销经理","Distribution manager","1123",0)

catelogs[33]= new Array("其他相关职位","Other","1140",0)

/**经营/管理类-不限*/

catelogs[34]= new Array("经营/管理类-不限","Management","1200",1)

catelogs[35]= new Array("(正/副)总裁/总经理/CEO","President, VP, General Manager, CEO","1204",0)

catelogs[36]= new Array("产品经理/主管","Product Manager/Director","1217",0)

catelogs[37]= new Array("企业发展规划经理/主管/助理","Corporate Planning Manager","1218",0)

catelogs[38]= new Array("分公司/办事处经理/主管","Branch Manager/Director","1219",0)

catelogs[39]= new Array("部门经理","Department Manager","1205",0)

catelogs[40]= new Array("总经理助理","President Assistant","1210",0)

catelogs[41]= new Array("厂长/副厂长","Factory Director, Vice Factory Director","1211",0)

catelogs[42]= new Array("经理助理","Manager Assistant","1213",0)

catelogs[43]= new Array("项目经理/主管","Project Manager","1214",0)

catelogs[44]= new Array("部门主管","Department Director","1215",0)

catelogs[45]= new Array("其他相关职位","Other","1240",0)

/**財务/审(统)计类-不限*/

catelogs[46]= new Array("財务/审(统)计类-不限","Financing/Audit/Stat.","1300",1)

catelogs[47]= new Array("財务总监","Finance Majordomo, CFO","1316",0)

catelogs[48]= new Array("財务主管/经理","Finance Director/Manager","1303",0)

catelogs[49]= new Array("会计","Accountant","1304",0)

catelogs[50]= new Array("审计","Auditor","1305",0)

catelogs[51]= new Array("帐目(进出口)管理","Account management","1306",0)

catelogs[52]= new Array("注冊会计师","Certified accountant","1308",0)

catelogs[53]= new Array("会计助理","Accountant assistant","1310",0)

catelogs[54]= new Array("出纳","Treasurer","1311",0)

catelogs[55]= new Array("注冊审计师","Certified Auditor","1312",0)

catelogs[56]= new Array("统计","Statistician","1313",0)

catelogs[57]= new Array("財务分析","Finance Analysis","1314",0)

catelogs[58]= new Array("成本分析/核算","Cost Analysis/Adjust","1315",0)

catelogs[59]= new Array("其他相关职位","Other","1340",0)

/**金融/保险/证券类-不限*/

catelogs[60]= new Array("金融/保险/证券类-不限","Finance/Insurance/Securities","1400",1)

catelogs[61]= new Array("证券期货从业人员","Securities/Futures","1403",0)

catelogs[62]= new Array("金融投资分析","Finance investing analysis","1404",0)

catelogs[63]= new Array("保险业务/保险经纪人/保险代理人","Insurance Agent/Broker","1405",0)

catelogs[64]= new Array("税务专员","Tax Clerk","1406",0)

catelogs[65]= new Array("评估师","Evaluating","1408",0)

catelogs[66]= new Array("银行信贷","Bank credit","1409",0)

catelogs[67]= new Array("融资经理/主管","Financing Manager/Directory","1410",0)

catelogs[68]= new Array("出纳员/银行专员","Treasurer/Bank Clerk","1411",0)

catelogs[69]= new Array("预结算专员","Budgeting/Balance Clerk","1412",0)

catelogs[70]= new Array("炒股操盘手","Stock Manipulator","1413",0)

catelogs[71]= new Array("证券经纪人","Securities Broke","1414",0)

catelogs[72]= new Array("注冊分析师","Certified Investment/Financial Analyst","1415",0)

catelogs[73]= new Array("投资/基金项目经理","Investment Manager","1416",0)

catelogs[74]= new Array("其他相关职位","Other","1440",0)

/**电子通讯/电气(器)类-不限*/

catelogs[75]= new Array("电子通讯/电气(器)类-不限","Telecommunication, Electronics","1500",1)

catelogs[76]= new Array("电子project师","Electron Engineer","1503",0)

catelogs[77]= new Array("电气project师","Electric Engineer","1504",0)

catelogs[78]= new Array("电信project师/通讯project师","Telecom Engineer/Communication Engineer","1505",0)

catelogs[79]= new Array("电路(布线)设计","Circuit Design","1506",0)

catelogs[80]= new Array("智能大厦/综合布线/弱电","Intelligent mansion/ synthetic disposal/Weak electronic","1508",0)

catelogs[81]= new Array("自己主动控制","Autocontrol","1509",0)

catelogs[82]= new Array("无线电技术","Radio-technology","1510",0)

catelogs[83]= new Array("半导体技术","Semiconductor technology","1511",0)

catelogs[84]= new Array("变压器/磁电project师","Magnetoelectricity Engineer","1512",0)

catelogs[85]= new Array("电声project师","Electric sound engineer","1513",0)

catelogs[86]= new Array("数码产品开发project师","Digital Production Development Engineer","1514",0)

catelogs[87]= new Array("单片机/DSP/底层软件开发","SCM/DSP/FPGA Development","1515",0)

catelogs[88]= new Array("光源与照明project","Lamp-house and Lighting Engineering","1516",0)

catelogs[89]= new Array("灯饰研发project师","Lamp Development Engineer","1517",0)

catelogs[90]= new Array("电气维修","Electric Maintain","1518",0)

catelogs[91]= new Array("家用电器","Household electric appliances","1520",0)

catelogs[92]= new Array("小家电","Small Household electric appliances","1521",0)

catelogs[93]= new Array("电器project师","Electric apparatus Engineer","1522",0)

catelogs[94]= new Array("电力project师","Electric Power Engineer","1523",0)

catelogs[95]= new Array("測试project师","Test engineer","1524",0)

catelogs[96]= new Array("其他相关职位","Other","1540",0)

/**机械(电)/仪表类-不限*/

catelogs[97]= new Array("机械(电)/仪表类-不限","Mechanism/Instrument","1600",1)

catelogs[98]= new Array("机械设计与制造","Machine Design and Manufacture","1603",0)

catelogs[99]= new Array("机械project师","Machine Engineer","1604",0)

catelogs[100]= new Array("模具project师","Matrix Engineer","1605",0)

catelogs[101]= new Array("铸造/锻造","Foundry/Smithing","1606",0)

catelogs[102]= new Array("注塑成型","Prototyping","1607",0)

catelogs[103]= new Array("气动/液压","Hydraulic Pressure/Gas driven","1608",0)

catelogs[104]= new Array("机械制图","Mechanical cartography","1609",0)

catelogs[105]= new Array("精密机械/仪器仪表","Precision optical machinery /instrument and meter","1610",0)

catelogs[106]= new Array("纺织机械","Spin machine","1611",0)

catelogs[107]= new Array("设备修理","Device Repairment","1614",0)

catelogs[108]= new Array("汽车/摩托车project师","Automobile/Autocycle Engineer","1615",0)

catelogs[109]= new Array("五金矿产/金属制品","Ironware, mineral resources/metalwork","1616",0)

catelogs[110]= new Array("机电一体化","Electromechanization","1617",0)

catelogs[111]= new Array("锅炉/压力容器","Boiler/Pressure vessel","1618",0)

catelogs[112]= new Array("船舶机械","Watercraft machine","1619",0)

catelogs[113]= new Array("机械工艺师","Machine Technics","1620",0)

catelogs[114]= new Array("刀具project师","Reamer Engineer","1621",0)

catelogs[115]= new Array("CNCproject师","CNC Engineer","1622",0)

catelogs[116]= new Array("结构设计师","Structure Engineer","1623",0)

catelogs[117]= new Array("食品机械","Grocery machine","1624",0)

catelogs[118]= new Array("焊接机械","Jointing machine","1625",0)

catelogs[119]= new Array("其他相关职位","Other","1640",0)

/**能源动力类-不限*/

catelogs[120]= new Array("能源动力类-不限","Energy sources/Power","1700",1)

catelogs[121]= new Array("水利、水电","Irrigation works/water and electricity","1703",0)

catelogs[122]= new Array("核电、火电","nuclear-powered/fire-powered electricity","1704",0)

catelogs[123]= new Array("电厂、电力","Power plant","1705",0)

catelogs[124]= new Array("制冷、暖通","Refrigeration/Heating","1706",0)

catelogs[125]= new Array("空调、锅炉","Air-conditioning/boiler","1707",0)

catelogs[126]= new Array("石油/天燃气/储运","Petroleum/natural gas","1708",0)

catelogs[127]= new Array("城市燃气","City gas","1709",0)

catelogs[128]= new Array("其他相关职位","Other","1740",0)

/**房地产/建筑施工类-不限*/

catelogs[129]= new Array("房地产/建筑施工类-不限","Realty/Architecture/Construction","1800",1)

catelogs[130]= new Array("建筑(结构)project师","Architecture engineer","1803",0)

catelogs[131]= new Array("建筑制图","Architecture cartography","1804",0)

catelogs[132]= new Array("project监理","Engineering superintendent","1805",0)

catelogs[133]= new Array("管道(水、电)","Pipeline/Refrigeration","1806",0)

catelogs[134]= new Array("给排水/供水(电)project","Drainage/water(electric) supply engineering","1807",0)

catelogs[135]= new Array("project预决算/施工","Engineering budget/Construction","1808",0)

catelogs[136]= new Array("房地产开发/策划","Realty Development/Planning","1809",0)

catelogs[137]= new Array("房地产评估","Realty evaluation","1810",0)

catelogs[138]= new Array("物业管理","Infrastructure management","1811",0)

catelogs[139]= new Array("路桥技术/隧道project","Route and Bridge tech./Tunnel engineering","1812",0)

catelogs[140]= new Array("基建/岩土project","Capital construction","1813",0)

catelogs[141]= new Array("港口与航道project","Port and sea-route engineering","1814",0)

catelogs[142]= new Array("园艺project/园林技术","Gardening engineering/Gardens tech.","1815",0)

catelogs[143]= new Array("房地产中介","Realty agency","1816",0)

catelogs[144]= new Array("注冊建筑师","Registered architect","1817",0)

catelogs[145]= new Array("制冷暖通","Refrigeration/Central heating","1818",0)

catelogs[146]= new Array("工民建","Industry/Civilian Architecture","1819",0)

catelogs[147]= new Array("其他相关职位","Other","1840",0)

/**公司文职类-不限*/

catelogs[148]= new Array("公司文职类-不限","Civilian Posts","1900",1)

catelogs[149]= new Array("图书情报/档案管理","Books Information/Files administration","1903",0)

catelogs[150]= new Array("文案策划/资料编写","Article Planning/Materials writing","1904",0)

catelogs[151]= new Array("高级秘书","Senior Secretary","1905",0)

catelogs[152]= new Array("电脑操作员/打字员","Computer Operator/ Type writer","1907",0)

catelogs[153]= new Array("前台文员接待","Reception","1908",0)

catelogs[154]= new Array("高级文员","Senior Civilian","1909",0)

catelogs[155]= new Array("话务员","Telephonist","1910",0)

catelogs[156]= new Array("文员","Civilian","1911",0)

catelogs[157]= new Array("其他相关职位","Other","1940",0)

/**广告(装潢、包装)设计类-不限*/

catelogs[158]= new Array("广告(装潢、包装)设计类-不限","Advertisement(upholster, casing) design","2100",1)

catelogs[159]= new Array("广告设计/创意策划","Advertisement design/originality planning","2103",0)

catelogs[160]= new Array("文案/媒体策划","Planning","2104",0)

catelogs[161]= new Array("产品包装设计","product casing design","2105",0)

catelogs[162]= new Array("室内(外)装修/装潢设计","Outdoor(indoor) fitment/upholster design","2106",0)

catelogs[163]= new Array("工艺品设计","Craftwork design","2107",0)

catelogs[164]= new Array("纺织/服饰(装)设计","Spin/finery design","2108",0)

catelogs[165]= new Array("形象设计","Visualize design","2109",0)

catelogs[166]= new Array("平面设计","Plane design","2110",0)

catelogs[167]= new Array("玩具设计","Toy design","2111",0)

catelogs[168]= new Array("珠宝设计","jewellery design","2112",0)

catelogs[169]= new Array("三维动画设计","3D Movie Design","2113",0)

catelogs[170]= new Array("多媒体设计与制作","multimedia design","2114",0)

catelogs[171]= new Array("工业产品设计","Industry product design","2115",0)

catelogs[172]= new Array("其他相关职位","Other","2140",0)

/**文体/教育/培训类-不限*/

catelogs[173]= new Array("文体/教育/培训类-不限","Culture/Education/Training","2200",1)

catelogs[174]= new Array("新闻出版","News/Press","2203",0)

catelogs[175]= new Array("文化艺术","Culture/Arts","2205",0)

catelogs[176]= new Array("高等教育","Higher education","2206",0)

catelogs[177]= new Array("中级教育","Intermediate education","2207",0)

catelogs[178]= new Array("小学/幼儿教育","Grade school/infant education","2208",0)

catelogs[179]= new Array("竞技/体育","Sports","2210",0)

catelogs[180]= new Array("职业教育/培训","Vocational education/Training","2211",0)

catelogs[181]= new Array("记者","Reporter","2212",0)

catelogs[182]= new Array("家教","Family education","2213",0)

catelogs[183]= new Array("其他相关职位","Other","2240",0)

/**卫生医疗/美容保健类-不限*/

catelogs[184]= new Array("卫生医疗/美容保健类-不限","Sanitation/Treatment/Hairedressing/Healthing","2400",1)

catelogs[185]= new Array("医生/医师","Doctor/Physician","2403",0)

catelogs[186]= new Array("牙科医生","Dentist","2404",0)

catelogs[187]= new Array("心理医生","Psychology doctor","2405",0)

catelogs[188]= new Array("外科医生","Surgeon","2406",0)

catelogs[189]= new Array("预防医生","Prevent doctor","2407",0)

catelogs[190]= new Array("护士/护理","Nurse","2408",0)

catelogs[191]= new Array("保健/健美","Heathcare/ Gymnasium","2409",0)

catelogs[192]= new Array("美容/美发","Hairdressing","2410",0)

catelogs[193]= new Array("药剂/中药/西药/药检","Medicament/Chinese traditional/Western medicine","2411",0)

catelogs[194]= new Array("针灸推拿","Acupuncture/message","2412",0)

catelogs[195]= new Array("临床医学","Clinic iatrology","2413",0)

catelogs[196]= new Array("妇幼保健","Women/children heathcare","2414",0)

catelogs[197]= new Array("卫生防疫","Sanitation/epidemic prevention","2415",0)

catelogs[198]= new Array("医药代表","Curative agent","2416",0)

catelogs[199]= new Array("医药检验","Medicine checker","2417",0)

catelogs[200]= new Array("兽医","Farrier","2418",0)

catelogs[201]= new Array("妇产科医生","Accoucheur","2419",0)

catelogs[202]= new Array("其他相关职位","Other","2440",0)

/**化工/制药类-不限*/

catelogs[203]= new Array("化工/制药类-不限","Chemical/Pharmacy","2600",1)

catelogs[204]= new Array("日用化工","Daily-use chemical industry","2603",0)

catelogs[205]= new Array("生物化工/生物制药","Biochemical industry/Biology pharmacy","2604",0)

catelogs[206]= new Array("造纸/废品处理","Paper making/waster disposal","2605",0)

catelogs[207]= new Array("化学药剂/药品","Chemistry medicament","2606",0)

catelogs[208]= new Array("玻璃/硅酸盐工业","Glass/Silicate industry","2607",0)

catelogs[209]= new Array("农药、化肥","Pesticide/ Chemical fertilizer","2608",0)

catelogs[210]= new Array("无机化工","Abio-chemical","2609",0)

catelogs[211]= new Array("有机化工","Organic chemical","2610",0)

catelogs[212]= new Array("精细化工","Fine chemical","2611",0)

catelogs[213]= new Array("分析化工","Analyse chemical","2612",0)

catelogs[214]= new Array("高分子化工/化纤/新材料","Macromolecule chemical/Chemical fibre/New materials","2613",0)

catelogs[215]= new Array("电镀化工","Plating chemical","2614",0)

catelogs[216]= new Array("其他相关职位","Other","2640",0)

/**宾馆饭店/餐饮旅游类-不限*/

catelogs[217]= new Array("宾馆饭店/餐饮旅游类-不限","Hotel/Restaurant/Junketing","2700",1)

catelogs[218]= new Array("服务员/侍者/门童","Waiter/waitress","2703",0)

catelogs[219]= new Array("高级厨师/调酒师","Senior chef/Wine mixer","2704",0)

catelogs[220]= new Array("导游","Cicerone","2705",0)

catelogs[221]= new Array("前台接待/礼仪/接线生","Reception/Telephonist","2706",0)

catelogs[222]= new Array("大堂经理/副理","Lobby manager","2707",0)

catelogs[223]= new Array("楼面经理/主任","Floor manager/director","2708",0)

catelogs[224]= new Array("酒店管理","Hotel manager","2709",0)

catelogs[225]= new Array("其他相关职位","Other","2740",0)

/**商店/零售服务类-不限*/

catelogs[226]= new Array("商店/零售服务类-不限","Shop/Retail/Services","2800",1)

catelogs[227]= new Array("营业员/服务员/店员","Shop assistant/counterjumper","2803",0)

catelogs[228]= new Array("导购员","Phasing leader","2804",0)

catelogs[229]= new Array("收银员","Gathering","2805",0)

catelogs[230]= new Array("店长","Innkeeper/shop manager","2806",0)

catelogs[231]= new Array("营销主管","Marketing director","2807",0)

catelogs[232]= new Array("理货员","Tally clerk","2808",0)

catelogs[233]= new Array("其他相关职位","Other","2840",0)

/**后勤保障类-不限*/

catelogs[234]= new Array("后勤保障类-不限","Logistics/Safeguard","2900",1)

catelogs[235]= new Array("保安/司机/搬运","Security/ Chauffeur/Portage","2903",0)

catelogs[236]= new Array("寻呼/声讯服务","Pagers/Voice information services","2904",0)

catelogs[237]= new Array("社区服务","Community services","2905",0)

catelogs[238]= new Array("清洁工/后勤","Dustman/logistics","2906",0)

catelogs[239]= new Array("食堂厨师","Refectory chef","2907",0)

catelogs[240]= new Array("其他相关职位","Other","2940",0)

/**其它类-不限*/

catelogs[241]= new Array("其它类-不限","Others","3000",1)

catelogs[242]= new Array("交通运输","Traffic","3003",0)

catelogs[243]= new Array("声光技术","Voice/Light tech.","3004",0)

catelogs[244]= new Array("生物技术","Boilogy tech.","3005",0)

catelogs[245]= new Array("測绘技术","Mapping tech.","3006",0)

catelogs[246]= new Array("激光技术","Laser tech.","3007",0)

catelogs[247]= new Array("地质勘探","Geology prove","3008",0)

catelogs[248]= new Array("矿产冶金","Mine/metallurgy","3009",0)

catelogs[249]= new Array("环境project","Environment engineering","3011",0)

catelogs[250]= new Array("市政建设/城市规划","Civicism construction/city planning","3012",0)

catelogs[251]= new Array("农、林、牧、渔、其它","Farming/Lumber/Pasturage/Fishery","3014",0)

catelogs[252]= new Array("其他相关职位","Other","3040",0)

/**行政/人事类-不限*/

catelogs[253]= new Array("行政/人事类-不限","unlimited","3100",1)

catelogs[254]= new Array("人力资源总监","Human Resource Majordomo","3115",0)

catelogs[255]= new Array("行政总监","Human Resource Majordomo","3116",0)

catelogs[256]= new Array("人事经理","Human Resource Manager","3103",0)

catelogs[257]= new Array("人事文员","Human Resource Civilian","3104",0)

catelogs[258]= new Array("员工培训经理/主管","Training Manager/Director","3105",0)

catelogs[259]= new Array("招聘经理/主任","Invite Manger/Director","3106",0)

catelogs[260]= new Array("行政经理","Administration Manager","3107",0)

catelogs[261]= new Array("人事助理","Human Resource Assistant","3108",0)

catelogs[262]= new Array("行政助理","Administration Assistant","3109",0)

catelogs[263]= new Array("行政文员","Administration Civilian","3110",0)

catelogs[264]= new Array("总务","General Affairs","3111",0)

catelogs[265]= new Array("薪资福利经理/主管/专员","Compensation Manager/Director/Clerk","3112",0)

catelogs[266]= new Array("绩效考核经理/主管/专员","Performance Manager/Director/Clerk","3113",0)

catelogs[267]= new Array("招聘专员","Invite Clerk","3114",0)

catelogs[268]= new Array("其他相关职位","Other","3140",0)

/**工业/工厂类-不限*/

catelogs[269]= new Array("工业/工厂类-不限","Industry/Factories","3500",1)

catelogs[270]= new Array("产品开发","Product Development","3504",0)

catelogs[271]= new Array("生产经理","Product Manager","3505",0)

catelogs[272]= new Array("project经理/主管","Engineering Manager/Director","3506",0)

catelogs[273]= new Array("品管经理/主管","PQA Manager/Director","3507",0)

catelogs[274]= new Array("物控经理/主管","Material Manager/Director","3508",0)

catelogs[275]= new Array("设备经理/主管","Device Manager/Director","3509",0)

catelogs[276]= new Array("仓库管理员","Storage Controller","3511",0)

catelogs[277]= new Array("计划员/调度员","Dispatcher","3512",0)

catelogs[278]= new Array("化验/检验员","Assay/Test Clerk","3513",0)

catelogs[279]= new Array("跟单员","Order Clerk","3516",0)

catelogs[280]= new Array("SMT技术员","SMT Technician","3517",0)

catelogs[281]= new Array("工艺project师","Technic Engineer","3518",0)

catelogs[282]= new Array("生管主管/督导","Production Management Director","3519",0)

catelogs[283]= new Array("生管员","Production Management Clerk","3520",0)

catelogs[284]= new Array("PEproject师","PE Engineer","3521",0)

catelogs[285]= new Array("IEproject师","IE Engineer","3522",0)

catelogs[286]= new Array("组长/拉长","Team leader","3523",0)

catelogs[287]= new Array("project设备project师","Engineering Device Engineer","3524",0)

catelogs[288]= new Array("品管员","PQA Commissioner","3525",0)

catelogs[289]= new Array("ISO专员","ISO Commissioner","3526",0)

catelogs[290]= new Array("物控员","Material Commissioner","3527",0)

catelogs[291]= new Array("安全主任","Security Director","3528",0)

catelogs[292]= new Array("统计员","Statistician","3529",0)

catelogs[293]= new Array("品质project师","PQA Engineer","3530",0)

catelogs[294]= new Array("MEproject师","ME Engineer","3531",0)

catelogs[295]= new Array("制造课长","Manufacture Director","3532",0)

catelogs[296]= new Array("RD经理","RD Manager","3533",0)

catelogs[297]= new Array("其他相关职位","Other","3540",0)

/**技工/普工类-不限*/

catelogs[298]= new Array("技工/普工类-不限","Mechanic/General worker","3600",1)

catelogs[299]= new Array("车、铣、刨、磨","Lathe/Milling/Planing","3603",0)

catelogs[300]= new Array("钳、钣、铆、冲、焊、铸","Pincers, francium, rivetting, washing, weld, cast","3604",0)

catelogs[301]= new Array("裁、剪、车、缝、熨、烫","Sewing/iron","3605",0)

catelogs[302]= new Array("水工/木工/油漆工","Warterworker, woodworker, painter","3606",0)

catelogs[303]= new Array("电工/锅炉工","Electrician/boiler worker","3607",0)

catelogs[304]= new Array("普通工人","General worker","3608",0)

catelogs[305]= new Array("其他相关职位","Other","3640",0)

/**轻工类-不限*/

catelogs[306]= new Array("轻工类-不限","Light industry","3700",1)

catelogs[307]= new Array("服装纺织","Accouterments/Spin","3703",0)

catelogs[308]= new Array("印刷/染整技术","Press/printing and dyeing","3704",0)

catelogs[309]= new Array("纸浆造纸工艺","Paper making","3705",0)

catelogs[310]= new Array("制鞋/制衣/制革/手袋","Shoemaking/Clothing/Curry/Vanity","3706",0)

catelogs[311]= new Array("食品project/糖酒饮料/粮油副食","Foodstuff Engineering/Candy/Wine/Drink/Grain/oil","3707",0)

catelogs[312]= new Array("陶瓷技术","potter","3708",0)

catelogs[313]= new Array("金银首饰加工","Jewellery process","3709",0)

catelogs[314]= new Array("其他相关职位","Other","3740",0)

/**市场营销/公关类-不限*/

catelogs[315]= new Array("市场营销/公关类-不限","Marketing/Public Relations","4100",1)

catelogs[316]= new Array("市场/营销总监","Market Majordomo","4117",0)

catelogs[317]= new Array("市场/营销经理","Marketing Manager","4103",0)

catelogs[318]= new Array("市场助理/专员","Marketing Assistant/Clerk","4104",0)

catelogs[319]= new Array("市场部主管","Marketing Director","4105",0)

catelogs[320]= new Array("市场调研/业务分析","Marketing Research/ Business Analysis","4106",0)

catelogs[321]= new Array("市场/行销企划","Marketing/Sales Planning","4107",0)

catelogs[322]= new Array("产品/品牌企划","Product/Brand Planning","4108",0)

catelogs[323]= new Array("品牌经理","Brand Manager","4109",0)

catelogs[324]= new Array("价格企划","Price Planning","4110",0)

catelogs[325]= new Array("广告企划","Advertisement Planning","4111",0)

catelogs[326]= new Array("新闻媒介企划","News Media Planning","4112",0)

catelogs[327]= new Array("市场推广/拓展/合作","Market Development","4113",0)

catelogs[328]= new Array("促销/礼仪专员","Promotion/Comity Clerk","4114",0)

catelogs[329]= new Array("公关经理","Public Relations Manager","4115",0)

catelogs[330]= new Array("公关专员","Public Relations Commissioner","4116",0)

catelogs[331]= new Array("其他相关职位","Other","4140",0)

/**客户服务类-不限*/

catelogs[332]= new Array("客户服务类-不限","Customer Services","4200",1)

catelogs[333]= new Array("客户服务经理","Customer Service Manager","4203",0)

catelogs[334]= new Array("客户数据库管理","Customer Database Administrator","4204",0)

catelogs[335]= new Array("客户关系管理","Customer Relationship Administrator","4205",0)

catelogs[336]= new Array("客户培训","Customer Training","4206",0)

catelogs[337]= new Array("客户咨询","Customer Consultant","4207",0)

catelogs[338]= new Array("热线咨询","Hot-line Consultant","4208",0)

catelogs[339]= new Array("客户服务","Customer Support","4209",0)

catelogs[340]= new Array("售前/售后支持","Pre-sale/after-sale support","4210",0)

catelogs[341]= new Array("投诉处理","Complains Solve","4211",0)

catelogs[342]= new Array("投诉监控","Complains Manage","4212",0)

catelogs[343]= new Array("客户主任","Customer Director","4213",0)

catelogs[344]= new Array("其他相关职位","Other","4240",0)

/**翻译类-不限*/

catelogs[345]= new Array("翻译类-不限","Translation","4300",1)

catelogs[346]= new Array("英语翻译","English","4303",0)

catelogs[347]= new Array("日语翻译","Japanese","4304",0)

catelogs[348]= new Array("法语翻译","French","4305",0)

catelogs[349]= new Array("德语翻译","German","4306",0)

catelogs[350]= new Array("俄语翻译","Russian","4307",0)

catelogs[351]= new Array("朝鲜语翻译","Korea","4308",0)

catelogs[352]= new Array("西班牙语翻译","Spanish","4309",0)

catelogs[353]= new Array("其他相关职位","Other","4340",0)

/**物流/贸易类-不限*/

catelogs[354]= new Array("物流/贸易类/採购类-不限","Trading","4400",1)

catelogs[355]= new Array("物流经理","Logistics Manager","4403",0)

catelogs[356]= new Array("物流主管","Logistics Director","4404",0)

catelogs[357]= new Array("仓库经理/主管","Storage manager/director","4405",0)

catelogs[358]= new Array("仓库管理员","Storage clerk","4406",0)

catelogs[359]= new Array("运输经理/主管","Transit manager/directer","4407",0)

catelogs[360]= new Array("单证员","Order Clerk","4408",0)

catelogs[361]= new Array("快递员","Courier","4409",0)

catelogs[362]= new Array("物流操作员","Logistics operator","4410",0)

catelogs[363]= new Array("船务人员","Shipman","4411",0)

catelogs[364]= new Array("外销员","Export commissioner","4412",0)

catelogs[365]= new Array("国际业务","International business","4413",0)

catelogs[366]= new Array("报关员","Customs commissioner","4414",0)

catelogs[367]= new Array("採购管理","Stock Management","4415",0)

catelogs[368]= new Array("其他相关职位","Other","4440",0)

/**咨询/顾问类-不限*/

catelogs[369]= new Array("咨询/顾问类-不限","Consultation","4500",1)

catelogs[370]= new Array("企业策划/顾问","Enterprise Planning consultant","4503",0)

catelogs[371]= new Array("企业管理/企管顾问","Enterprise management consultant","4504",0)

catelogs[372]= new Array("涉外咨询师","Internationalize consultant","4505",0)

catelogs[373]= new Array("高级猎头顾问","Senior Head-hunter","4506",0)

catelogs[374]= new Array("咨询总监","Consultant majordomo","4507",0)

catelogs[375]= new Array("咨询经理","Consultant manager","4508",0)

catelogs[376]= new Array("咨询员","consultation","4509",0)

catelogs[377]= new Array("信息中介","Information agency","4510",0)

catelogs[378]= new Array("专业顾问","Speciality consultant","4511",0)

catelogs[379]= new Array("其他相关职位","Other","4540",0)

/**法律专业人员类-不限*/

catelogs[380]= new Array("法律专业人员类-不限","Law Specialist","4600",1)

catelogs[381]= new Array("律师","Lawyer","4603",0)

catelogs[382]= new Array("法律顾问","Counselor","4604",0)

catelogs[383]= new Array("法务人员","Law clerk","4605",0)

catelogs[384]= new Array("律师助理","Lawyer assistant","4606",0)

catelogs[385]= new Array("书记员","secretary","4607",0)

catelogs[386]= new Array("其他相关职位","Other","4640",0)

/**影视/摄影专业类-不限*/

catelogs[387]= new Array("广播/影视/摄影专业类-不限","Movie/Photopgraphy","4700",1)

catelogs[388]= new Array("影视策划/制作人员","Movie planning/Producer","4703",0)

catelogs[389]= new Array("影音器材管理","Media device administrator","4704",0)

catelogs[390]= new Array("演员","Actor/actress","4705",0)

catelogs[391]= new Array("模特儿","model","4706",0)

catelogs[392]= new Array("摄影师","photographer","4707",0)

catelogs[393]= new Array("音效师","sound effects director","4708",0)

catelogs[394]= new Array("节目主持人","M.C","4709",0)

catelogs[395]= new Array("广播电视(影)","Broadcasting","4710",0)

catelogs[396]= new Array("其他相关职位","Other","4740",0)

/**编辑/发行类-不限*/

catelogs[397]= new Array("编辑/发行类-不限","Edit/Publish","4800",1)

catelogs[398]= new Array("总编","editor-in-chief","4803",0)

catelogs[399]= new Array("副总编","subeditor","4804",0)

catelogs[400]= new Array("编辑主任","edit director","4805",0)

catelogs[401]= new Array("编辑","editor","4806",0)

catelogs[402]= new Array("美术编辑","art editor","4807",0)

catelogs[403]= new Array("发行主管","dispatch manager","4808",0)

catelogs[404]= new Array("发行助理","dispatch assistant","4809",0)

catelogs[405]= new Array("其他相关职位","Other","4840",0)

//全国各城市数组

var cityCount;

citys = new Array();

cityCount=536;

/**北京*/

citys[0]= new Array("北京-不限","北京","北京","北京",1,"11")

citys[1]= new Array("├-东城区","北京","东城区","东城区",0,"1101")

citys[2]= new Array("├-西城区","北京","西城区","西城区",0,"1102")

citys[3]= new Array("├-崇文区","北京","崇文区","崇文区",0,"1103")

citys[4]= new Array("├-宣武区","北京","宣武区","宣武区",0,"1104")

citys[5]= new Array("├-朝阳区","北京","朝阳区","朝阳区",0,"1105")

citys[6]= new Array("├-海淀区","北京","海淀区","海淀区",0,"1106")

citys[7]= new Array("├-丰台区","北京","丰台区","丰台区",0,"1107")

citys[8]= new Array("├-石景山区","北京","石景山区","石景山区",0,"1108")

citys[9]= new Array("├-门头沟区","北京","门头沟区","门头沟区",0,"1109")

citys[10]= new Array("├-房山区","北京","房山区","房山区",0,"1110")

citys[11]= new Array("├-通州区","北京","通州区","通州区",0,"1111")

citys[12]= new Array("├-顺义区","北京","顺义区","顺义区",0,"1112")

citys[13]= new Array("├-昌平区","北京","昌平区","昌平区",0,"1113")

citys[14]= new Array("├-大兴区","北京","大兴区","大兴区",0,"1114")

citys[15]= new Array("├-平谷县","北京","平谷县","平谷县",0,"1115")

citys[16]= new Array("├-怀柔县","北京","怀柔县","怀柔县",0,"1116")

citys[17]= new Array("├-密云县","北京","密云县","密云县",0,"1117")

citys[18]= new Array("├-延庆县","北京","延庆县","延庆县",0,"1118")

/**上海*/

citys[19]= new Array("上海-不限","上海","上海","上海",1,"12")

citys[20]= new Array("├-黄浦区","上海","黄浦区","黄浦区",0,"1201")

citys[21]= new Array("├-卢湾区","上海","卢湾区","卢湾区",0,"1202")

citys[22]= new Array("├-徐汇区","上海","徐汇区","徐汇区",0,"1203")

citys[23]= new Array("├-长宁区","上海","长宁区","长宁区",0,"1204")

citys[24]= new Array("├-静安区","上海","静安区","静安区",0,"1205")

citys[25]= new Array("├-普陀区","上海","普陀区","普陀区",0,"1206")

citys[26]= new Array("├-闸北区","上海","闸北区","闸北区",0,"1207")

citys[27]= new Array("├-虹口区","上海","虹口区","虹口区",0,"1208")

citys[28]= new Array("├-杨浦区","上海","杨浦区","杨浦区",0,"1209")

citys[29]= new Array("├-宝山区","上海","宝山区","宝山区",0,"1210")

citys[30]= new Array("├-闵行区","上海","闵行区","闵行区",0,"1211")

citys[31]= new Array("├-嘉定区","上海","嘉定区","嘉定区",0,"1212")

citys[32]= new Array("├-浦东新区","上海","浦东新区","浦东新区",0,"1213")

citys[33]= new Array("├-松江区","上海","松江区","松江区",0,"1214")

citys[34]= new Array("├-金山区","上海","金山区","金山区",0,"1215")

citys[35]= new Array("├-青浦区","上海","青浦区","青浦区",0,"1216")

citys[36]= new Array("├-南汇区","上海","南汇区","南汇区",0,"1217")

citys[37]= new Array("├-奉贤区","上海","奉贤区","奉贤区",0,"1218")

citys[38]= new Array("├-崇明县","上海","崇明县","崇明县",0,"1219")

/**天津*/

citys[39]= new Array("天津-不限","天津","天津","天津",1,"13")

citys[40]= new Array("├-和平区","天津","和平区","和平区",0,"1301")

citys[41]= new Array("├-河东区","天津","河东区","河东区",0,"1302")

citys[42]= new Array("├-河西区","天津","河西区","河西区",0,"1303")

citys[43]= new Array("├-南开区","天津","南开区","南开区",0,"1304")

citys[44]= new Array("├-河北区","天津","河北区","河北区",0,"1305")

citys[45]= new Array("├-红桥区","天津","红桥区","红桥区",0,"1306")

citys[46]= new Array("├-塘沽区","天津","塘沽区","塘沽区",0,"1307")

citys[47]= new Array("├-汉沽区","天津","汉沽区","汉沽区",0,"1308")

citys[48]= new Array("├-大港区","天津","大港区","大港区",0,"1309")

citys[49]= new Array("├-东丽区","天津","东丽区","东丽区",0,"1310")

citys[50]= new Array("├-西青区","天津","西青区","西青区",0,"1311")

citys[51]= new Array("├-北辰区","天津","北辰区","北辰区",0,"1312")

citys[52]= new Array("├-津南区","天津","津南区","津南区",0,"1313")

citys[53]= new Array("├-武清区","天津","武清区","武清区",0,"1314")

citys[54]= new Array("├-宝坻区","天津","宝坻区","宝坻区",0,"1315")

citys[55]= new Array("├-静海县","天津","静海县","静海县",0,"1316")

citys[56]= new Array("├-宁河县","天津","宁河县","宁河县",0,"1317")

citys[57]= new Array("├-蓟县","天津","蓟县","蓟县",0,"1318")

/**重庆*/

citys[58]= new Array("重庆-不限","重庆","重庆","重庆",1,"14")

citys[59]= new Array("├-渝中区","重庆","渝中区","渝中区",0,"1401")

citys[60]= new Array("├-大渡口区","重庆","大渡口区","大渡口区",0,"1402")

citys[61]= new Array("├-江北区","重庆","江北区","江北区",0,"1403")

citys[62]= new Array("├-沙坪坝区","重庆","沙坪坝区","沙坪坝区",0,"1404")

citys[63]= new Array("├-九龙坡区","重庆","九龙坡区","九龙坡区",0,"1405")

citys[64]= new Array("├-南岸区","重庆","南岸区","南岸区",0,"1406")

citys[65]= new Array("├-北碚区","重庆","北碚区","北碚区",0,"1407")

citys[66]= new Array("├-万盛区","重庆","万盛区","万盛区",0,"1408")

citys[67]= new Array("├-双桥区","重庆","双桥区","双桥区",0,"1409")

citys[68]= new Array("├-渝北区","重庆","渝北区","渝北区",0,"1410")

citys[69]= new Array("├-巴南区","重庆","巴南区","巴南区",0,"1411")

citys[70]= new Array("├-万州区","重庆","万州区","万州区",0,"1412")

citys[71]= new Array("├-涪陵区","重庆","涪陵区","涪陵区",0,"1413")

citys[72]= new Array("├-黔江区","重庆","黔江区","黔江区",0,"1414")

citys[73]= new Array("├-永川市","重庆","永川市","永川市",0,"1415")

citys[74]= new Array("├-合川市","重庆","合川市","合川市",0,"1416")

citys[75]= new Array("├-江津市","重庆","江津市","江津市",0,"1417")

citys[76]= new Array("├-南川市","重庆","南川市","南川市",0,"1418")

citys[77]= new Array("├-长寿县","重庆","长寿县","长寿县",0,"1419")

citys[78]= new Array("├-綦江县","重庆","綦江县","綦江县",0,"1420")

citys[79]= new Array("├-潼南县","重庆","潼南县","潼南县",0,"1421")

citys[80]= new Array("├-荣昌县","重庆","荣昌县","荣昌县",0,"1422")

citys[81]= new Array("├-璧山县","重庆","璧山县","璧山县",0,"1423")

citys[82]= new Array("├-大足县","重庆","大足县","大足县",0,"1424")

citys[83]= new Array("├-铜梁县","重庆","铜梁县","铜梁县",0,"1425")

citys[84]= new Array("├-梁平县","重庆","梁平县","梁平县",0,"1426")

citys[85]= new Array("├-城口县","重庆","城口县","城口县",0,"1427")

citys[86]= new Array("├-垫江县","重庆","垫江县","垫江县",0,"1428")

citys[87]= new Array("├-武隆县","重庆","武隆县","武隆县",0,"1429")

citys[88]= new Array("├-丰都县","重庆","丰都县","丰都县",0,"1430")

citys[89]= new Array("├-奉节县","重庆","奉节县","奉节县",0,"1431")

citys[90]= new Array("├-开县","重庆","开县","开县",0,"1432")

citys[91]= new Array("├-云阳县","重庆","云阳县","云阳县",0,"1433")

citys[92]= new Array("├-忠县","重庆","忠县","忠县",0,"1434")

citys[93]= new Array("├-巫溪县","重庆","巫溪县","巫溪县",0,"1435")

citys[94]= new Array("├-巫山县","重庆","巫山县","巫山县",0,"1436")

citys[95]= new Array("├-石柱县","重庆","石柱县","石柱县",0,"1437")

citys[96]= new Array("├-秀山县","重庆","秀山县","秀山县",0,"1438")

citys[97]= new Array("├-酉阳县","重庆","酉阳县","酉阳县",0,"1439")

citys[98]= new Array("├-彭水县","重庆","彭水县","彭水县",0,"1440")

/**广东*/

citys[99]= new Array("广东-不限","广东","广东","广东",1,"15")

citys[100]= new Array("├-广州","广东","广州","广州",0,"1501")

citys[101]= new Array("├-深圳","广东","深圳","深圳",0,"1502")

citys[102]= new Array("├-珠海","广东","珠海","珠海",0,"1503")

citys[103]= new Array("├-汕头","广东","汕头","汕头",0,"1504")

citys[104]= new Array("├-韶关","广东","韶关","韶关",0,"1505")

citys[105]= new Array("├-河源","广东","河源","河源",0,"1506")

citys[106]= new Array("├-梅州","广东","梅州","梅州",0,"1507")

citys[107]= new Array("├-惠州","广东","惠州","惠州",0,"1508")

citys[108]= new Array("├-汕尾","广东","汕尾","汕尾",0,"1509")

citys[109]= new Array("├-东莞","广东","东莞","东莞",0,"1510")

citys[110]= new Array("├-中山","广东","中山","中山",0,"1511")

citys[111]= new Array("├-江门","广东","江门","江门",0,"1512")

citys[112]= new Array("├-佛山","广东","佛山","佛山",0,"1513")

citys[113]= new Array("├-阳江","广东","阳江","阳江",0,"1514")

citys[114]= new Array("├-湛江","广东","湛江","湛江",0,"1515")

citys[115]= new Array("├-茂名","广东","茂名","茂名",0,"1516")

citys[116]= new Array("├-肇庆","广东","肇庆","肇庆",0,"1517")

citys[117]= new Array("├-清远","广东","清远","清远",0,"1518")

citys[118]= new Array("├-潮州","广东","潮州","潮州",0,"1519")

citys[119]= new Array("├-揭阳","广东","揭阳","揭阳",0,"1520")

citys[120]= new Array("├-云浮","广东","云浮","云浮",0,"1521")

/**福建*/

citys[121]= new Array("福建-不限","福建","福建","福建",1,"16")

citys[122]= new Array("├-福州","福建","福州","福州",0,"1601")

citys[123]= new Array("├-厦门","福建","厦门","厦门",0,"1602")

citys[124]= new Array("├-三明","福建","三明","三明",0,"1603")

citys[125]= new Array("├-莆田","福建","莆田","莆田",0,"1604")

citys[126]= new Array("├-泉州","福建","泉州","泉州",0,"1605")

citys[127]= new Array("├-漳州","福建","漳州","漳州",0,"1606")

citys[128]= new Array("├-南平","福建","南平","南平",0,"1607")

citys[129]= new Array("├-龙岩","福建","龙岩","龙岩",0,"1608")

citys[130]= new Array("├-宁德","福建","宁德","宁德",0,"1609")

/**浙江*/

citys[131]= new Array("浙江-不限","浙江","浙江","浙江",1,"17")

citys[132]= new Array("├-杭州","浙江","杭州","杭州",0,"1701")

citys[133]= new Array("├-宁波","浙江","宁波","宁波",0,"1702")

citys[134]= new Array("├-温州","浙江","温州","温州",0,"1703")

citys[135]= new Array("├-嘉兴","浙江","嘉兴","嘉兴",0,"1704")

citys[136]= new Array("├-湖州","浙江","湖州","湖州",0,"1705")

citys[137]= new Array("├-绍兴","浙江","绍兴","绍兴",0,"1706")

citys[138]= new Array("├-金华","浙江","金华","金华",0,"1707")

citys[139]= new Array("├-衢州","浙江","衢州","衢州",0,"1708")

citys[140]= new Array("├-舟山","浙江","舟山","舟山",0,"1709")

citys[141]= new Array("├-台州","浙江","台州","台州",0,"1710")

citys[142]= new Array(" ├-台州路桥","浙江","台州路桥","台州路桥",0,"171001")

citys[143]= new Array(" ├-台州椒江","浙江","台州椒江","台州椒江",0,"171002")

citys[144]= new Array(" ├-台州黄岩","浙江","台州黄岩","台州黄岩",0,"171003")

citys[145]= new Array(" ├-台州玉环","浙江","台州玉环","台州玉环",0,"171004")

citys[146]= new Array(" ├-台州温岭","浙江","台州温岭","台州温岭",0,"171005")

citys[147]= new Array(" ├-台州临海","浙江","台州临海","台州临海",0,"171006")

citys[148]= new Array(" ├-台州天台","浙江","台州天台","台州天台",0,"171007")

citys[149]= new Array(" ├-台州三门","浙江","台州三门","台州三门",0,"171008")

citys[150]= new Array(" ├-台州仙居","浙江","台州仙居","台州仙居",0,"171009")

citys[151]= new Array("├-丽水","浙江","丽水","丽水",0,"1711")

/**江苏*/

citys[152]= new Array("江苏-不限","江苏","江苏","江苏",1,"18")

citys[153]= new Array("├-南京","江苏","南京","南京",0,"1801")

citys[154]= new Array("├-徐州","江苏","徐州","徐州",0,"1802")

citys[155]= new Array("├-连云港","江苏","连云港","连云港",0,"1803")

citys[156]= new Array("├-淮安","江苏","淮安","淮安",0,"1804")

citys[157]= new Array("├-宿迁","江苏","宿迁","宿迁",0,"1805")

citys[158]= new Array("├-盐城","江苏","盐城","盐城",0,"1806")

citys[159]= new Array("├-扬州","江苏","扬州","扬州",0,"1807")

citys[160]= new Array("├-泰州","江苏","泰州","泰州",0,"1808")

citys[161]= new Array("├-南通","江苏","南通","南通",0,"1809")

citys[162]= new Array("├-镇江","江苏","镇江","镇江",0,"1810")

citys[163]= new Array("├-常州","江苏","常州","常州",0,"1811")

citys[164]= new Array("├-无锡","江苏","无锡","无锡",0,"1812")

citys[165]= new Array(" ├-无锡昆山","江苏","无锡昆山","无锡昆山",0,"181201")

citys[166]= new Array("├-苏州","江苏","苏州","苏州",0,"1813")

/**山东*/

citys[167]= new Array("山东-不限","山东","山东","山东",1,"19")

citys[168]= new Array("├-济南","山东","济南","济南",0,"1901")

citys[169]= new Array("├-青岛","山东","青岛","青岛",0,"1902")

citys[170]= new Array("├-淄博","山东","淄博","淄博",0,"1903")

citys[171]= new Array("├-枣庄","山东","枣庄","枣庄",0,"1904")

citys[172]= new Array("├-东营","山东","东营","东营",0,"1905")

citys[173]= new Array("├-潍坊","山东","潍坊","潍坊",0,"1906")

citys[174]= new Array("├-烟台","山东","烟台","烟台",0,"1907")

citys[175]= new Array("├-威海","山东","威海","威海",0,"1908")

citys[176]= new Array("├-济宁","山东","济宁","济宁",0,"1909")

citys[177]= new Array("├-泰安","山东","泰安","泰安",0,"1910")

citys[178]= new Array("├-日照","山东","日照","日照",0,"1911")

citys[179]= new Array("├-莱芜","山东","莱芜","莱芜",0,"1912")

citys[180]= new Array("├-德州","山东","德州","德州",0,"1913")

citys[181]= new Array("├-临沂","山东","临沂","临沂",0,"1914")

citys[182]= new Array("├-聊城","山东","聊城","聊城",0,"1915")

citys[183]= new Array("├-滨州","山东","滨州","滨州",0,"1916")

citys[184]= new Array("├-菏泽","山东","菏泽","菏泽",0,"1917")

/**辽宁*/

citys[185]= new Array("辽宁-不限","辽宁","辽宁","辽宁",1,"20")

citys[186]= new Array("├-沈阳","辽宁","沈阳","沈阳",0,"2001")

citys[187]= new Array("├-大连","辽宁","大连","大连",0,"2002")

citys[188]= new Array("├-鞍山","辽宁","鞍山","鞍山",0,"2003")

citys[189]= new Array("├-抚顺","辽宁","抚顺","抚顺",0,"2004")

citys[190]= new Array("├-本溪","辽宁","本溪","本溪",0,"2005")

citys[191]= new Array("├-丹东","辽宁","丹东","丹东",0,"2006")

citys[192]= new Array("├-锦州","辽宁","锦州","锦州",0,"2007")

citys[193]= new Array("├-葫芦岛","辽宁","葫芦岛","葫芦岛",0,"2008")

citys[194]= new Array("├-营口","辽宁","营口","营口",0,"2009")

citys[195]= new Array("├-盘锦","辽宁","盘锦","盘锦",0,"2010")

citys[196]= new Array("├-阜新","辽宁","阜新","阜新",0,"2011")

citys[197]= new Array("├-辽阳","辽宁","辽阳","辽阳",0,"2012")

citys[198]= new Array("├-铁岭","辽宁","铁岭","铁岭",0,"2013")

citys[199]= new Array("├-朝阳","辽宁","朝阳","朝阳",0,"2014")

/**江西*/

citys[200]= new Array("江西-不限","江西","江西","江西",1,"21")

citys[201]= new Array("├-南昌","江西","南昌","南昌",0,"2101")

citys[202]= new Array("├-景德镇","江西","景德镇","景德镇",0,"2102")

citys[203]= new Array("├-萍乡","江西","萍乡","萍乡",0,"2103")

citys[204]= new Array("├-新余","江西","新余","新余",0,"2104")

citys[205]= new Array("├-九江","江西","九江","九江",0,"2105")

citys[206]= new Array("├-鹰潭","江西","鹰潭","鹰潭",0,"2106")

citys[207]= new Array("├-赣州","江西","赣州","赣州",0,"2107")

citys[208]= new Array("├-吉安","江西","吉安","吉安",0,"2108")

citys[209]= new Array("├-宜春","江西","宜春","宜春",0,"2109")

citys[210]= new Array("├-抚州","江西","抚州","抚州",0,"2110")

citys[211]= new Array("├-上饶","江西","上饶","上饶",0,"2111")

/**四川*/

citys[212]= new Array("四川-不限","四川","四川","四川",1,"22")

citys[213]= new Array("├-成都","四川","成都","成都",0,"2201")

citys[214]= new Array("├-自贡","四川","自贡","自贡",0,"2202")

citys[215]= new Array("├-攀枝花","四川","攀枝花","攀枝花",0,"2203")

citys[216]= new Array("├-泸州","四川","泸州","泸州",0,"2204")

citys[217]= new Array("├-德阳","四川","德阳","德阳",0,"2205")

citys[218]= new Array("├-绵阳","四川","绵阳","绵阳",0,"2206")

citys[219]= new Array("├-广元","四川","广元","广元",0,"2207")

citys[220]= new Array("├-遂宁","四川","遂宁","遂宁",0,"2208")

citys[221]= new Array("├-内江","四川","内江","内江",0,"2209")

citys[222]= new Array("├-乐山","四川","乐山","乐山",0,"2210")

citys[223]= new Array("├-南充","四川","南充","南充",0,"2211")

citys[224]= new Array("├-宜宾","四川","宜宾","宜宾",0,"2212")

citys[225]= new Array("├-广安","四川","广安","广安",0,"2213")

citys[226]= new Array("├-达州","四川","达州","达州",0,"2214")

citys[227]= new Array("├-巴中","四川","巴中","巴中",0,"2215")

citys[228]= new Array("├-雅安","四川","雅安","雅安",0,"2216")

citys[229]= new Array("├-眉山","四川","眉山","眉山",0,"2217")

citys[230]= new Array("├-资阳","四川","资阳","资阳",0,"2218")

citys[231]= new Array("├-阿坝州","四川","阿坝州","阿坝州",0,"2219")

citys[232]= new Array("├-甘孜州","四川","甘孜州","甘孜州",0,"2220")

citys[233]= new Array("├-凉山州","四川","凉山州","凉山州",0,"2221")

/**陕西*/

citys[234]= new Array("陕西-不限","陕西","陕西","陕西",1,"23")

citys[235]= new Array("├-西安","陕西","西安","西安",0,"2301")

citys[236]= new Array("├-铜川","陕西","铜川","铜川",0,"2302")

citys[237]= new Array("├-宝鸡","陕西","宝鸡","宝鸡",0,"2303")

citys[238]= new Array("├-咸阳","陕西","咸阳","咸阳",0,"2304")

citys[239]= new Array("├-渭南","陕西","渭南","渭南",0,"2305")

citys[240]= new Array("├-延安","陕西","延安","延安",0,"2306")

citys[241]= new Array("├-汉中","陕西","汉中","汉中",0,"2307")

citys[242]= new Array("├-榆林","陕西","榆林","榆林",0,"2308")

citys[243]= new Array("├-安康","陕西","安康","安康",0,"2309")

citys[244]= new Array("├-商洛","陕西","商洛","商洛",0,"2310")

/**湖北*/

citys[245]= new Array("湖北-不限","湖北","湖北","湖北",1,"24")

citys[246]= new Array("├-武汉","湖北","武汉","武汉",0,"2401")

citys[247]= new Array("├-黄石","湖北","黄石","黄石",0,"2402")

citys[248]= new Array("├-襄樊","湖北","襄樊","襄樊",0,"2403")

citys[249]= new Array("├-十堰","湖北","十堰","十堰",0,"2404")

citys[250]= new Array("├-荆州","湖北","荆州","荆州",0,"2405")

citys[251]= new Array("├-宜昌","湖北","宜昌","宜昌",0,"2406")

citys[252]= new Array("├-荆门","湖北","荆门","荆门",0,"2407")

citys[253]= new Array("├-鄂州","湖北","鄂州","鄂州",0,"2408")

citys[254]= new Array("├-孝感","湖北","孝感","孝感",0,"2409")

citys[255]= new Array("├-黄冈","湖北","黄冈","黄冈",0,"2410")

citys[256]= new Array("├-咸宁","湖北","咸宁","咸宁",0,"2411")

citys[257]= new Array("├-随州","湖北","随州","随州",0,"2412")

citys[258]= new Array("├-仙桃","湖北","仙桃","仙桃",0,"2413")

citys[259]= new Array("├-天门","湖北","天门","天门",0,"2414")

citys[260]= new Array("├-潜江","湖北","潜江","潜江",0,"2415")

citys[261]= new Array("├-神农架","湖北","神农架","神农架",0,"2416")

citys[262]= new Array("├-恩施州","湖北","恩施州","恩施州",0,"2417")

/**河南*/

citys[263]= new Array("河南-不限","河南","河南","河南",1,"25")

citys[264]= new Array("├-郑州","河南","郑州","郑州",0,"2501")

citys[265]= new Array("├-开封","河南","开封","开封",0,"2502")

citys[266]= new Array("├-洛阳","河南","洛阳","洛阳",0,"2503")

citys[267]= new Array("├-平顶山","河南","平顶山","平顶山",0,"2504")

citys[268]= new Array("├-焦作","河南","焦作","焦作",0,"2505")

citys[269]= new Array("├-鹤壁","河南","鹤壁","鹤壁",0,"2506")

citys[270]= new Array("├-新乡","河南","新乡","新乡",0,"2507")

citys[271]= new Array("├-安阳","河南","安阳","安阳",0,"2508")

citys[272]= new Array("├-濮阳","河南","濮阳","濮阳",0,"2509")

citys[273]= new Array("├-许昌","河南","许昌","许昌",0,"2510")

citys[274]= new Array("├-漯河","河南","漯河","漯河",0,"2511")

citys[275]= new Array("├-三门峡","河南","三门峡","三门峡",0,"2512")

citys[276]= new Array("├-南阳","河南","南阳","南阳",0,"2513")

citys[277]= new Array("├-商丘","河南","商丘","商丘",0,"2514")

citys[278]= new Array("├-信阳","河南","信阳","信阳",0,"2515")

citys[279]= new Array("├-周口","河南","周口","周口",0,"2516")

citys[280]= new Array("├-驻马店","河南","驻马店","驻马店",0,"2517")

citys[281]= new Array("├-济源","河南","济源","济源",0,"2518")

/**河北*/

citys[282]= new Array("河北-不限","河北","河北","河北",1,"26")

citys[283]= new Array("├-石家庄","河北","石家庄","石家庄",0,"2601")

citys[284]= new Array("├-唐山","河北","唐山","唐山",0,"2602")

citys[285]= new Array("├-秦皇岛","河北","秦皇岛","秦皇岛",0,"2603")

citys[286]= new Array("├-邯郸","河北","邯郸","邯郸",0,"2604")

citys[287]= new Array("├-邢台","河北","邢台","邢台",0,"2605")

citys[288]= new Array("├-保定","河北","保定","保定",0,"2606")

citys[289]= new Array("├-张家口","河北","张家口","张家口",0,"2607")

citys[290]= new Array("├-承德","河北","承德","承德",0,"2608")

citys[291]= new Array("├-沧州","河北","沧州","沧州",0,"2609")

citys[292]= new Array("├-廊坊","河北","廊坊","廊坊",0,"2610")

citys[293]= new Array("├-衡水","河北","衡水","衡水",0,"2611")

/**山西*/

citys[294]= new Array("山西-不限","山西","山西","山西",1,"27")

citys[295]= new Array("├-太原","山西","太原","太原",0,"2701")

citys[296]= new Array("├-大同","山西","大同","大同",0,"2702")

citys[297]= new Array("├-阳泉","山西","阳泉","阳泉",0,"2703")

citys[298]= new Array("├-长治","山西","长治","长治",0,"2704")

citys[299]= new Array("├-晋城","山西","晋城","晋城",0,"2705")

citys[300]= new Array("├-朔州","山西","朔州","朔州",0,"2706")

citys[301]= new Array("├-晋中","山西","晋中","晋中",0,"2707")

citys[302]= new Array("├-忻州","山西","忻州","忻州",0,"2708")

citys[303]= new Array("├-临汾","山西","临汾","临汾",0,"2709")

citys[304]= new Array("├-运城","山西","运城","运城",0,"2710")

citys[305]= new Array("├-吕梁","山西","吕梁","吕梁",0,"2711")

/**内蒙古*/

citys[306]= new Array("内蒙古-不限","内蒙古","内蒙古","内蒙古",1,"28")

citys[307]= new Array("├-呼和浩特","内蒙古","呼和浩特","呼和浩特",0,"2801")

citys[308]= new Array("├-包头","内蒙古","包头","包头",0,"2802")

citys[309]= new Array("├-乌海","内蒙古","乌海","乌海",0,"2803")

citys[310]= new Array("├-赤峰","内蒙古","赤峰","赤峰",0,"2804")

citys[311]= new Array("├-通辽","内蒙古","通辽","通辽",0,"2805")

citys[312]= new Array("├-鄂尔多斯","内蒙古","鄂尔多斯","鄂尔多斯",0,"2806")

citys[313]= new Array("├-乌兰察布","内蒙古","乌兰察布","乌兰察布",0,"2807")

citys[314]= new Array("├-锡林郭勒","内蒙古","锡林郭勒","锡林郭勒",0,"2808")

citys[315]= new Array("├-呼伦贝尔","内蒙古","呼伦贝尔","呼伦贝尔",0,"2809")

citys[316]= new Array("├-巴彦淖尔","内蒙古","巴彦淖尔","巴彦淖尔",0,"2810")

citys[317]= new Array("├-阿拉善盟","内蒙古","阿拉善盟","阿拉善盟",0,"2811")

citys[318]= new Array("├-兴安盟","内蒙古","兴安盟","兴安盟",0,"2812")

/**吉林*/

citys[319]= new Array("吉林-不限","吉林","吉林","吉林",1,"29")

citys[320]= new Array("├-长春","吉林","长春","长春",0,"2901")

citys[321]= new Array("├-吉林市","吉林","吉林市","吉林市",0,"2902")

citys[322]= new Array("├-四平","吉林","四平","四平",0,"2903")

citys[323]= new Array("├-辽源","吉林","辽源","辽源",0,"2904")

citys[324]= new Array("├-通化","吉林","通化","通化",0,"2905")

citys[325]= new Array("├-白山","吉林","白山","白山",0,"2906")

citys[326]= new Array("├-松原","吉林","松原","松原",0,"2907")

citys[327]= new Array("├-白城","吉林","白城","白城",0,"2908")

citys[328]= new Array("├-延边州","吉林","延边州","延边州",0,"2909")

/**黑龙江*/

citys[329]= new Array("黑龙江-不限","黑龙江","黑龙江","黑龙江",1,"30")

citys[330]= new Array("├-哈尔滨","黑龙江","哈尔滨","哈尔滨",0,"3001")

citys[331]= new Array("├-齐齐哈尔","黑龙江","齐齐哈尔","齐齐哈尔",0,"3002")

citys[332]= new Array("├-鹤岗","黑龙江","鹤岗","鹤岗",0,"3003")

citys[333]= new Array("├-双鸭山","黑龙江","双鸭山","双鸭山",0,"3004")

citys[334]= new Array("├-鸡西","黑龙江","鸡西","鸡西",0,"3005")

citys[335]= new Array("├-大庆","黑龙江","大庆","大庆",0,"3006")

citys[336]= new Array("├-伊春","黑龙江","伊春","伊春",0,"3007")

citys[337]= new Array("├-牡丹江","黑龙江","牡丹江","牡丹江",0,"3008")

citys[338]= new Array("├-佳木斯","黑龙江","佳木斯","佳木斯",0,"3009")

citys[339]= new Array("├-七台河","黑龙江","七台河","七台河",0,"3010")

citys[340]= new Array("├-黑河","黑龙江","黑河","黑河",0,"3011")

citys[341]= new Array("├-绥化","黑龙江","绥化","绥化",0,"3012")

citys[342]= new Array("├-大兴安岭","黑龙江","大兴安岭","大兴安岭",0,"3013")

/**安徽*/

citys[343]= new Array("安徽-不限","安徽","安徽","安徽",1,"31")

citys[344]= new Array("├-合肥","安徽","合肥","合肥",0,"3101")

citys[345]= new Array("├-芜湖","安徽","芜湖","芜湖",0,"3102")

citys[346]= new Array("├-蚌埠","安徽","蚌埠","蚌埠",0,"3103")

citys[347]= new Array("├-淮南","安徽","淮南","淮南",0,"3104")

citys[348]= new Array("├-马鞍山","安徽","马鞍山","马鞍山",0,"3105")

citys[349]= new Array("├-淮北","安徽","淮北","淮北",0,"3106")

citys[350]= new Array("├-铜陵","安徽","铜陵","铜陵",0,"3107")

citys[351]= new Array("├-安庆","安徽","安庆","安庆",0,"3108")

citys[352]= new Array("├-黄山","安徽","黄山","黄山",0,"3109")

citys[353]= new Array("├-滁州","安徽","滁州","滁州",0,"3110")

citys[354]= new Array("├-阜阳","安徽","阜阳","阜阳",0,"3111")

citys[355]= new Array("├-宿州","安徽","宿州","宿州",0,"3112")

citys[356]= new Array("├-巢湖","安徽","巢湖","巢湖",0,"3113")

citys[357]= new Array("├-六安","安徽","六安","六安",0,"3114")

citys[358]= new Array("├-亳州","安徽","亳州","亳州",0,"3115")

citys[359]= new Array("├-宣城","安徽","宣城","宣城",0,"3116")

citys[360]= new Array("├-池州","安徽","池州","池州",0,"3117")

/**湖南*/

citys[361]= new Array("湖南-不限","湖南","湖南","湖南",1,"32")

citys[362]= new Array("├-长沙","湖南","长沙","长沙",0,"3201")

citys[363]= new Array("├-株州","湖南","株州","株州",0,"3202")

citys[364]= new Array("├-湘潭","湖南","湘潭","湘潭",0,"3203")

citys[365]= new Array("├-衡阳","湖南","衡阳","衡阳",0,"3204")

citys[366]= new Array("├-邵阳","湖南","邵阳","邵阳",0,"3205")

citys[367]= new Array("├-岳阳","湖南","岳阳","岳阳",0,"3206")

citys[368]= new Array("├-常德","湖南","常德","常德",0,"3207")

citys[369]= new Array("├-张家界","湖南","张家界","张家界",0,"3208")

citys[370]= new Array("├-益阳","湖南","益阳","益阳",0,"3209")

citys[371]= new Array("├-郴州","湖南","郴州","郴州",0,"3210")

citys[372]= new Array("├-永州","湖南","永州","永州",0,"3211")

citys[373]= new Array("├-怀化","湖南","怀化","怀化",0,"3212")

citys[374]= new Array("├-娄底","湖南","娄底","娄底",0,"3213")

citys[375]= new Array("├-湘西州","湖南","湘西州","湘西州",0,"3214")

/**广西*/

citys[376]= new Array("广西-不限","广西","广西","广西",1,"33")

citys[377]= new Array("├-南宁","广西","南宁","南宁",0,"3310")

citys[378]= new Array("├-柳州","广西","柳州","柳州",0,"3311")

citys[379]= new Array("├-桂林","广西","桂林","桂林",0,"3303")

citys[380]= new Array("├-梧州","广西","梧州","梧州",0,"3304")

citys[381]= new Array("├-北海","广西","北海","北海",0,"3305")

citys[382]= new Array("├-防城港","广西","防城港","防城港",0,"3306")

citys[383]= new Array("├-钦州","广西","钦州","钦州",0,"3307")

citys[384]= new Array("├-贵港","广西","贵港","贵港",0,"3308")

citys[385]= new Array("├-玉林","广西","玉林","玉林",0,"3309")

citys[386]= new Array("├-来宾","广西","来宾","来宾",0,"3301")

citys[387]= new Array("├-崇左","广西","崇左","崇左",0,"3302")

citys[388]= new Array("├-贺州","广西","贺州","贺州",0,"3312")

citys[389]= new Array("├-百色","广西","百色","百色",0,"3313")

citys[390]= new Array("├-河池","广西","河池","河池",0,"3314")

/**海南*/

citys[391]= new Array("海南-不限","海南","海南","海南",1,"34")

citys[392]= new Array("├-海口","海南","海口","海口",0,"3401")

citys[393]= new Array("├-三亚","海南","三亚","三亚",0,"3402")

citys[394]= new Array("├-五指山","海南","五指山","五指山",0,"3403")

citys[395]= new Array("├-琼海","海南","琼海","琼海",0,"3404")

citys[396]= new Array("├-儋州","海南","儋州","儋州",0,"3405")

citys[397]= new Array("├-琼山","海南","琼山","琼山",0,"3406")

citys[398]= new Array("├-文昌","海南","文昌","文昌",0,"3407")

citys[399]= new Array("├-万宁","海南","万宁","万宁",0,"3408")

citys[400]= new Array("├-东方","海南","东方","东方",0,"3409")

citys[401]= new Array("├-澄迈","海南","澄迈","澄迈",0,"3410")

citys[402]= new Array("├-定安","海南","定安","定安",0,"3411")

citys[403]= new Array("├-屯昌","海南","屯昌","屯昌",0,"3412")

citys[404]= new Array("├-临高","海南","临高","临高",0,"3413")

citys[405]= new Array("├-白沙","海南","白沙","白沙",0,"3414")

citys[406]= new Array("├-昌江","海南","昌江","昌江",0,"3415")

citys[407]= new Array("├-乐东","海南","乐东","乐东",0,"3416")

citys[408]= new Array("├-陵水","海南","陵水","陵水",0,"3417")

citys[409]= new Array("├-保亭","海南","保亭","保亭",0,"3418")

citys[410]= new Array("├-琼中","海南","琼中","琼中",0,"3419")

/**云南*/

citys[411]= new Array("云南-不限","云南","云南","云南",1,"35")

citys[412]= new Array("├-昆明","云南","昆明","昆明",0,"3501")

citys[413]= new Array("├-曲靖","云南","曲靖","曲靖",0,"3502")

citys[414]= new Array("├-玉溪","云南","玉溪","玉溪",0,"3503")

citys[415]= new Array("├-保山","云南","保山","保山",0,"3504")

citys[416]= new Array("├-昭通","云南","昭通","昭通",0,"3505")

citys[417]= new Array("├-思茅","云南","思茅","思茅",0,"3506")

citys[418]= new Array("├-临沧","云南","临沧","临沧",0,"3507")

citys[419]= new Array("├-丽江","云南","丽江","丽江",0,"3508")

citys[420]= new Array("├-文山州","云南","文山州","文山州",0,"3509")

citys[421]= new Array("├-红河州","云南","红河州","红河州",0,"3510")

citys[422]= new Array("├-西双版纳","云南","西双版纳","西双版纳",0,"3511")

citys[423]= new Array("├-楚雄州","云南","楚雄州","楚雄州",0,"3512")

citys[424]= new Array("├-大理州","云南","大理州","大理州",0,"3513")

citys[425]= new Array("├-德宏州","云南","德宏州","德宏州",0,"3514")

citys[426]= new Array("├-怒江州","云南","怒江州","怒江州",0,"3515")

citys[427]= new Array("├-迪庆州","云南","迪庆州","迪庆州",0,"3516")

/**贵州*/

citys[428]= new Array("贵州-不限","贵州","贵州","贵州",1,"36")

citys[429]= new Array("├-贵阳","贵州","贵阳","贵阳",0,"3601")

citys[430]= new Array("├-六盘水","贵州","六盘水","六盘水",0,"3602")

citys[431]= new Array("├-遵义","贵州","遵义","遵义",0,"3603")

citys[432]= new Array("├-安顺","贵州","安顺","安顺",0,"3604")

citys[433]= new Array("├-铜仁","贵州","铜仁","铜仁",0,"3605")

citys[434]= new Array("├-毕节","贵州","毕节","毕节",0,"3606")

citys[435]= new Array("├-黔西南州","贵州","黔西南州","黔西南州",0,"3607")

citys[436]= new Array("├-黔东南州","贵州","黔东南州","黔东南州",0,"3608")

citys[437]= new Array("├-黔南州","贵州","黔南州","黔南州",0,"3609")

/**西藏*/

citys[438]= new Array("西藏-不限","西藏","西藏","西藏",1,"37")

citys[439]= new Array("├-拉萨","西藏","拉萨","拉萨",0,"3701")

citys[440]= new Array("├-那曲","西藏","那曲","那曲",0,"3702")

citys[441]= new Array("├-昌都","西藏","昌都","昌都",0,"3703")

citys[442]= new Array("├-山南","西藏","山南","山南",0,"3704")

citys[443]= new Array("├-日喀则","西藏","日喀则","日喀则",0,"3705")

citys[444]= new Array("├-阿里","西藏","阿里","阿里",0,"3706")

citys[445]= new Array("├-林芝","西藏","林芝","林芝",0,"3707")

/**甘肃*/

citys[446]= new Array("甘肃-不限","甘肃","甘肃","甘肃",1,"38")

citys[447]= new Array("├-兰州","甘肃","兰州","兰州",0,"3801")

citys[448]= new Array("├-金昌","甘肃","金昌","金昌",0,"3802")

citys[449]= new Array("├-白银","甘肃","白银","白银",0,"3803")

citys[450]= new Array("├-天水","甘肃","天水","天水",0,"3804")

citys[451]= new Array("├-嘉峪关","甘肃","嘉峪关","嘉峪关",0,"3805")

citys[452]= new Array("├-武威","甘肃","武威","武威",0,"3806")

citys[453]= new Array("├-定西","甘肃","定西","定西",0,"3807")

citys[454]= new Array("├-平凉","甘肃","平凉","平凉",0,"3808")

citys[455]= new Array("├-庆阳","甘肃","庆阳","庆阳",0,"3809")

citys[456]= new Array("├-陇南","甘肃","陇南","陇南",0,"3810")

citys[457]= new Array("├-张掖","甘肃","张掖","张掖",0,"3811")

citys[458]= new Array("├-酒泉","甘肃","酒泉","酒泉",0,"3812")

citys[459]= new Array("├-甘南州","甘肃","甘南州","甘南州",0,"3813")

citys[460]= new Array("├-临夏州","甘肃","临夏州","临夏州",0,"3814")

/**宁夏*/

citys[461]= new Array("宁夏-不限","宁夏","宁夏","宁夏",1,"39")

citys[462]= new Array("├-银川","宁夏","银川","银川",0,"3901")

citys[463]= new Array("├-石嘴山","宁夏","石嘴山","石嘴山",0,"3902")

citys[464]= new Array("├-吴忠","宁夏","吴忠","吴忠",0,"3903")

citys[465]= new Array("├-固原","宁夏","固原","固原",0,"3904")

/**青海*/

citys[466]= new Array("青海-不限","青海","青海","青海",1,"40")

citys[467]= new Array("├-西宁","青海","西宁","西宁",0,"4001")

citys[468]= new Array("├-海东","青海","海东","海东",0,"4002")

citys[469]= new Array("├-海北州","青海","海北州","海北州",0,"4003")

citys[470]= new Array("├-黄南州","青海","黄南州","黄南州",0,"4004")

citys[471]= new Array("├-海南州","青海","海南州","海南州",0,"4005")

citys[472]= new Array("├-果洛州","青海","果洛州","果洛州",0,"4006")

citys[473]= new Array("├-玉树州","青海","玉树州","玉树州",0,"4007")

citys[474]= new Array("├-海西州","青海","海西州","海西州",0,"4008")

/**新疆*/

citys[475]= new Array("新疆-不限","新疆","新疆","新疆",1,"41")

citys[476]= new Array("├-乌鲁木齐","新疆","乌鲁木齐","乌鲁木齐",0,"4101")

citys[477]= new Array("├-克拉玛依","新疆","克拉玛依","克拉玛依",0,"4102")

citys[478]= new Array("├-石河子","新疆","石河子","石河子",0,"4103")

citys[479]= new Array("├-吐鲁番","新疆","吐鲁番","吐鲁番",0,"4104")

citys[480]= new Array("├-哈密","新疆","哈密","哈密",0,"4105")

citys[481]= new Array("├-和田","新疆","和田","和田",0,"4106")

citys[482]= new Array("├-阿克苏","新疆","阿克苏","阿克苏",0,"4107")

citys[483]= new Array("├-喀什","新疆","喀什","喀什",0,"4108")

citys[484]= new Array("├-克孜勒苏","新疆","克孜勒苏","克孜勒苏",0,"4109")

citys[485]= new Array("├-巴音郭楞","新疆","巴音郭楞","巴音郭楞",0,"4110")

citys[486]= new Array("├-昌吉州","新疆","昌吉州","昌吉州",0,"4111")

citys[487]= new Array("├-博尔塔拉","新疆","博尔塔拉","博尔塔拉",0,"4112")

citys[488]= new Array("├-伊犁州","新疆","伊犁州","伊犁州",0,"4113")

/**香港*/

citys[489]= new Array("香港-不限","香港","香港","香港",1,"42")

citys[490]= new Array("├-中西区","香港","中西区","中西区",0,"4201")

citys[491]= new Array("├-东区","香港","东区","东区",0,"4202")

citys[492]= new Array("├-九龙城区","香港","九龙城区","九龙城区",0,"4203")

citys[493]= new Array("├-观塘区","香港","观塘区","观塘区",0,"4204")

citys[494]= new Array("├-南区","香港","南区","南区",0,"4205")

citys[495]= new Array("├-深水?区","香港","深水?

区","深水?

区",0,"4206")

citys[496]= new Array("├-湾仔区","香港","湾仔区","湾仔区",0,"4207")

citys[497]= new Array("├-黄大仙区","香港","黄大仙区","黄大仙区",0,"4208")

citys[498]= new Array("├-油尖旺区","香港","油尖旺区","油尖旺区",0,"4209")

citys[499]= new Array("├-离岛区","香港","离岛区","离岛区",0,"4210")

citys[500]= new Array("├-葵青区","香港","葵青区","葵青区",0,"4211")

citys[501]= new Array("├-北区","香港","北区","北区",0,"4212")

citys[502]= new Array("├-西贡区","香港","西贡区","西贡区",0,"4213")

citys[503]= new Array("├-沙田区","香港","沙田区","沙田区",0,"4214")

citys[504]= new Array("├-屯门区","香港","屯门区","屯门区",0,"4215")

citys[505]= new Array("├-大埔区","香港","大埔区","大埔区",0,"4216")

citys[506]= new Array("├-荃湾区","香港","荃湾区","荃湾区",0,"4217")

citys[507]= new Array("├-元朗区","香港","元朗区","元朗区",0,"4218")

/**澳门*/

citys[508]= new Array("澳门-不限","澳门","澳门","澳门",1,"43")

citys[509]= new Array("├-澳门","澳门","澳门","澳门",0,"43")

/**台湾*/

citys[510]= new Array("台湾-不限","台湾","台湾","台湾",1,"44")

citys[511]= new Array("├-台北市","台湾","台北市","台北市",0,"4401")

citys[512]= new Array("├-高雄市","台湾","高雄市","高雄市",0,"4402")

citys[513]= new Array("├-基隆市","台湾","基隆市","基隆市",0,"4403")

citys[514]= new Array("├-台中市","台湾","台中市","台中市",0,"4404")

citys[515]= new Array("├-台南市","台湾","台南市","台南市",0,"4405")

citys[516]= new Array("├-新竹市","台湾","新竹市","新竹市",0,"4406")

citys[517]= new Array("├-嘉义市","台湾","嘉义市","嘉义市",0,"4407")

citys[518]= new Array("├-台北县","台湾","台北县","台北县",0,"4408")

citys[519]= new Array("├-宜兰县","台湾","宜兰县","宜兰县",0,"4409")

citys[520]= new Array("├-新竹县","台湾","新竹县","新竹县",0,"4410")

citys[521]= new Array("├-桃园县","台湾","桃园县","桃园县",0,"4411")

citys[522]= new Array("├-苗栗县","台湾","苗栗县","苗栗县",0,"4412")

citys[523]= new Array("├-台中县","台湾","台中县","台中县",0,"4413")

citys[524]= new Array("├-彰化县","台湾","彰化县","彰化县",0,"4414")

citys[525]= new Array("├-南投县","台湾","南投县","南投县",0,"4415")

citys[526]= new Array("├-嘉义县","台湾","嘉义县","嘉义县",0,"4416")

citys[527]= new Array("├-云林县","台湾","云林县","云林县",0,"4417")

citys[528]= new Array("├-台南县","台湾","台南县","台南县",0,"4418")

citys[529]= new Array("├-高雄县","台湾","高雄县","高雄县",0,"4419")

citys[530]= new Array("├-屏东县","台湾","屏东县","屏东县",0,"4420")

citys[531]= new Array("├-台东县","台湾","台东县","台东县",0,"4421")

citys[532]= new Array("├-花莲县","台湾","花莲县","花莲县",0,"4422")

citys[533]= new Array("├-澎湖县","台湾","澎湖县","澎湖县",0,"4423")

/**国外*/

citys[534]= new Array("国外-不限","国外","国外","国外",1,"45")

citys[535]= new Array("├-国外","国外","国外","国外",0,"45")

<SCRIPT language=javascript type=text/javascript>

/**下拉菜单选择*/

function selectOnchange(mainitem,subitem,catalog)

{

setSubSelectItem(catalog,mainitem,subitem);

}

function setSubSelectItem(catalog,mainitem,subitem)

{

var itemCount;

var items = new Array();

var filterStr='北京天津上海重庆';

var subvalue=mainitem.options[mainitem.selectedIndex].value;

if(catalog=='jobcatelog')

{

subitem.length = 0;

itemCount = catelogCount;

items = catelogs;

var opt=document.createElement("OPTION");

if((subvalue == ''))

{

with(opt)

{

text="不限";

value="";

style.color="navy";

}

subitem.add(opt);

}

for (i=0;i<itemCount; i++)

{

if ((items[2]).substring(0,2) == subvalue.substring(0,2))

{

var opt=document.createElement("OPTION");

opt.text=items[0];

opt.value=items[2];

subitem.add(opt);

}

}

}

else if(catalog=='citys1')

{

subitem.length = 0;

itemCount = cityCount;

items = citys;

var opt=document.createElement("OPTION");

if((subvalue == ''))

{

with(opt)

{

text="不限";

value="";

}

subitem.add(opt);

}

for (i=0;i < itemCount; i++)

{

if (items[1] == subvalue)

{

var opt=document.createElement("OPTION");

opt.text=items[0];

opt.value=items[2];

subitem.add(opt);

}

}

}

}

/**使对象得到焦点*/

function objFocus(obj)

{

if(event.keyCode==9)

{

obj.focus();

}

}

//-->

</SCRIPT>

调用代码:

<tr>

<td width=91>岗位类别<span

style="font-size: 12px; font-family: verdana">:</span></td>

<td width=450>

<select style="width: 150px" [color=red] name=[color=green]jobMainCatalogry>

<option value=00 selected>-------请选择------</option>

[color=red]<script language="javascript">writeJobs();</script> </select>

<select class=fieldhz id=station style="width: 180px" name=[color=green]jobfunction>

<option value=0 selected>------请选择-----</option>

</select>

</td>

</tr>

<tr>

<td width=91 bgcolor=#f6f6f6>工作地点<span style="font-size: 12px; font-family: verdana">:</span>

</td>

<td width=450 bgcolor=#f6f6f6>

<select style="width: 120px"[color=red] name=[color=green]province>

[color=red]<script language="javascript"> writeCitys();</script> </select>

<select class=fieldhz

id=locus style="width: 100px" name=[color=green]workplace> <option value=00 selected>不限</option></select> </font></td></tr>

<tr>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: