function funcMain(b) {
	if (document.form1.country.selectedIndex == 0) {
		document.form1.state.length = 1;
		document.form1.state.selectedIndex = 0;
		document.form1.state.options[0].text = "-----";
		document.form1.state.options[0].value = "";
	}else if(document.form1.country.selectedIndex > 2){
		document.form1.state.length = 1;
		document.form1.state.selectedIndex = 0;
		document.form1.state.options[0].text = "You need not choose here.";
		document.form1.state.options[0].value = "";
	} else {
		if (b) {
			document.form1.state.length = 1;
			document.form1.state.selectedIndex = 0;
		}
		var c2 = bun2[document.form1.country.selectedIndex - 1];
		var n2 = bcd2[document.form1.country.selectedIndex - 1];
		document.form1.state.length = c2.length + 1;
		if(document.form1.country.selectedIndex == 1){
			document.form1.state.options[0].text = "Choose State...";
		}else if(document.form1.country.selectedIndex == 2){
			document.form1.state.options[0].text = "Choose Province...";
		}
		document.form1.state.options[0].value = "";
		for (var i = 0; i < c2.length; i++) {
			document.form1.state.options[i + 1].text = c2[i];
			document.form1.state.options[i + 1].value = n2[i];
			if(document.form1.state.options[i + 1].text=="test"){
				document.form1.state.options[i + 1].selected=true;
			}
		}
	}
}
var bun2 = new Array();
bun2[0]=new Array("Alabama","Alaska","Arizona","Arkansas","California","Colorado","Connecticut","Delaware","District of Colombia","Florida","Georgia","Hawaii","Idaho","Illinois","Indiana","Iowa","Kansas","Kentucky","Louisiana","Maine","Maryland","Massachusetts","Michigan","Minnesota","Mississippi","Missouri","Montana","Nebraska","Nevada","New Hampshire","New Jersey","New Mexico","New York","North Carolina","North Dakota","Ohio","Oklahoma","Oregon","Pennsylvania","Rhode Island","South Carolina","South Dakota","Tennessee","Texas","Utah","Vermont","Virginia","Washington","West Virginia","Wisconsin","Wyoming");
bun2[1]=new Array("Alberta","British Columbia","Manitoba","New Brunswick","Newfoundland and Labrador","Nova Scotia","Northwest Territories","Ontario","Prince Edward Island","Quebec","Saskatchewan","Yukon","Nunavut");

var bcd2 = new Array();
bcd2[0]=new Array("AL","AK","AZ","AR","CA","CO","CT","DE","DC","FL","GA","HI","ID","IL","IN","IA","KS","KY","LA","ME","MD","MA","MI","MN","MS","MO","MT","NE","NV","NH","NJ","NM","NY","NC","ND","OH","OK","OR","PA","RI","SC","SD","TN","TX","UT","VT","VA","WA","WV","WI","WY");
bcd2[1]=new Array("AB","BC","MB","NB","NL","NS","NT","ON","PE","QC","SK","YT","NU");