function ClearList(ctrl){
	if (document.all){
		for(;ctrl.options.length>0;)
			ctrl.options.remove(ctrl.options.length-1);
	}else{
		for(;ctrl.options.length>0;){
			ctrl.options[ctrl.options.length-1] = null;
		}
	}
	//Op = ctrl.document.createElement("OPTION");
	//Op.text = '选择城市';
	//Op.value = '';
	//ctrl.options.add(Op);
}
function chg_Country(Country){
	var State='';
	if(Country != ''){
		document.form1.Country.value = Country;
		if(Country=='中华人民共和国'){State='北京#天津#河北#山西#辽宁#吉林#黑龙江#上海#江苏#浙江#安徽#福建#江西#山东#河南#湖北#湖南#广东#广西#海南#重庆#四川#贵州#云南#西藏#陕西#甘肃#青海#宁夏#内蒙古#新疆#香港#澳门#台湾#其它';}
	}
	var cc = document.form1.State;
	ClearList(cc);	
	var ary = new Array();
	ary = State.split('#');
	for(i=0;i<=ary.length;i++){
		if(ary[i]){
			Op = cc.document.createElement('OPTION');
			Op.value = ary[i];
			Op.text = ary[i];
			cc.options.add(Op);
		}	
	}
}