function addAreaOptions(sel) {	
	sel.options.add(new Option("香港","香港 OR 香港特别行政区"));
	sel.options.add(new Option("澳门","澳门"));
	sel.options.add(new Option("台湾","台湾"));
	sel.options.add(new Option("海外","海外"));
	sel.options.add(new Option("北京","北京 OR 北京市"));
	sel.options.add(new Option("上海","上海 OR 上海市"));
	sel.options.add(new Option("杭州","杭州 OR 杭州市"));
	sel.options.add(new Option("广州","广州 OR 广州市"));
	sel.options.add(new Option("深圳","深圳 OR 深圳市"));
	sel.options.add(new Option("南京","南京 OR 南京市"));
	sel.options.add(new Option("武汉","武汉 OR 武汉市"));
	sel.options.add(new Option("天津","天津 OR 天津市"));
	sel.options.add(new Option("成都","成都 OR 成都市"));
	sel.options.add(new Option("哈尔滨","哈尔滨 OR 哈尔滨市"));
	sel.options.add(new Option("重庆","重庆 OR 重庆市"));
	sel.options.add(new Option("宁波","宁波 OR 宁波市"));
	sel.options.add(new Option("无锡","无锡 OR 无锡市"));
	sel.options.add(new Option("济南","济南 OR 济南市"));
	sel.options.add(new Option("苏州","苏州 OR 苏州市"));
	sel.options.add(new Option("温州","温州 OR 温州市"));
	sel.options.add(new Option("青岛","青岛 OR 青岛市"));
	sel.options.add(new Option("沈阳","沈阳 OR 沈阳市"));
	sel.options.add(new Option("福州","福州 OR 福州市"));
	sel.options.add(new Option("西安","西安 OR 西安市"));
	sel.options.add(new Option("长沙","长沙 OR 长沙市"));
	sel.options.add(new Option("合肥","合肥 OR 合肥市"));
	sel.options.add(new Option("南宁","南宁 OR 南宁市"));
	sel.options.add(new Option("南昌","南昌 OR 南昌市"));
	sel.options.add(new Option("郑州","郑州 OR 郑州市"));
	sel.options.add(new Option("厦门","厦门 OR 厦门市"));
	sel.options.add(new Option("大连","大连 OR 大连市"));
	sel.options.add(new Option("常州","常州 OR 常州市"));
	sel.options.add(new Option("石家庄","石家庄 OR 石家庄市"));
	sel.options.add(new Option("东莞","东莞 OR 东莞市"));
	sel.options.add(new Option("安徽","安徽 OR 安徽市"));
	sel.options.add(new Option("福建","福建 OR 福建省"));
	sel.options.add(new Option("甘肃","甘肃 OR 甘肃省"));
	sel.options.add(new Option("广东","广东 OR 广东省"));
	sel.options.add(new Option("广西","广西 OR 广西省"));
	sel.options.add(new Option("贵州","贵州 OR 贵州省"));
	sel.options.add(new Option("海南","海南 OR 海南省"));
	sel.options.add(new Option("河北","河北 OR 河北省"));
	sel.options.add(new Option("黑龙江","黑龙江 OR 黑龙江省"));
	sel.options.add(new Option("河南","河南 OR 河南省"));
	sel.options.add(new Option("湖北","湖北 OR 湖北省"));
	sel.options.add(new Option("湖南","湖南 OR 湖南省"));
	sel.options.add(new Option("江苏","江苏 OR 江苏省"));
	sel.options.add(new Option("江西","江西 OR 江西省"));
	sel.options.add(new Option("吉林","吉林 OR 吉林省"));
	sel.options.add(new Option("辽宁","辽宁 OR 辽宁省"));
	sel.options.add(new Option("内蒙古","内蒙古"));
	sel.options.add(new Option("宁夏","宁夏"));
	sel.options.add(new Option("青海","青海 OR 青海省"));
	sel.options.add(new Option("山东","山东 OR 山东省"));
	sel.options.add(new Option("山西","山西 OR 山西省"));
	sel.options.add(new Option("陕西","陕西 OR 陕西省"));
	sel.options.add(new Option("四川","四川 OR 四川省"));
	sel.options.add(new Option("新疆","新疆"));
	sel.options.add(new Option("西藏","西藏"));
	sel.options.add(new Option("云南","云南 OR 云南省"));
	sel.options.add(new Option("浙江","浙江 OR 浙江省"));
	sel.options.add(new Option("其它","其它"));
	sel.options.add(new Option("所有地区",""));
}
