function RefreshStates() {with (document.frm_Main) {
state.selectedIndex=0
if (country.options[country.selectedIndex].value=='US') //-- United States
   {state.length= 61
    state.options[ 0].value="";	state.options[ 0].text="Select a State"	
	state.options[ 1].value="AL";	state.options[ 1].text="Alabama"
	state.options[ 2].value="AK";	state.options[ 2].text="Alaska"
	state.options[ 3].value="AS";	state.options[ 3].text="American Samoa"
	state.options[ 4].value="AZ";	state.options[ 4].text="Arizona"
	state.options[ 5].value="AR";	state.options[ 5].text="Arkansas"
	state.options[ 6].value="CA";	state.options[ 6].text="California"
	state.options[ 7].value="CO";	state.options[ 7].text="Colorado"
	state.options[ 8].value="CT";	state.options[ 8].text="Connecticut"
	state.options[ 9].value="DE";	state.options[ 9].text="Delaware"
	state.options[10].value="DC";	state.options[10].text="District Of Columbia"
	state.options[11].value="FM";	state.options[11].text="Fed. States Of Micronesia"
	state.options[12].value="FL";	state.options[12].text="Florida"
	state.options[13].value="GA";	state.options[13].text="Georgia"
	state.options[14].value="GU";	state.options[14].text="Guam"
	state.options[15].value="HI";	state.options[15].text="Hawaii"
	state.options[16].value="ID";	state.options[16].text="Idaho"
	state.options[17].value="IL";	state.options[17].text="Illinois"
	state.options[18].value="IN";	state.options[18].text="Indiana"
	state.options[19].value="IA";	state.options[19].text="Iowa"
	state.options[20].value="KS";	state.options[20].text="Kansas"
	state.options[21].value="KY";	state.options[21].text="Kentucky"
	state.options[22].value="LA";	state.options[22].text="Louisiana"
	state.options[23].value="ME";	state.options[23].text="Maine"
	state.options[24].value="MH";	state.options[24].text="Marshall Islands"
	state.options[25].value="MD";	state.options[25].text="Maryland"
	state.options[26].value="MA";	state.options[26].text="Massachusetts"
	state.options[27].value="MI";	state.options[27].text="Michigan"
	state.options[28].value="MN";	state.options[28].text="Minnesota"
	state.options[29].value="MS";	state.options[29].text="Mississippi"
	state.options[30].value="MO";	state.options[30].text="Missouri"
	state.options[31].value="MT";	state.options[31].text="Montana"
	state.options[32].value="NE";	state.options[32].text="Nebraska"
	state.options[33].value="NV";	state.options[33].text="Nevada"
	state.options[34].value="NH";	state.options[34].text="New Hampshire"
	state.options[35].value="NJ";	state.options[35].text="New Jersey"
	state.options[36].value="NM";	state.options[36].text="New Mexico"
	state.options[37].value="NY";	state.options[37].text="New York"
	state.options[38].value="NC";	state.options[38].text="North Carolina"
	state.options[39].value="ND";	state.options[39].text="North Dakota"
	state.options[40].value="MP";	state.options[40].text="North. Mariana Islands"
	state.options[41].value="OH";	state.options[41].text="Ohio"
	state.options[42].value="OK";	state.options[42].text="Oklahoma"
	state.options[43].value="OR";	state.options[43].text="Oregon"
	state.options[44].value="PW";	state.options[44].text="Palau"
	state.options[45].value="PA";	state.options[45].text="Pennsylvania"
	state.options[46].value="PR";	state.options[46].text="Puerto Rico"
	state.options[47].value="RI";	state.options[47].text="Rhode Island"
	state.options[48].value="SC";	state.options[48].text="South Carolina"
	state.options[49].value="SD";	state.options[49].text="South Dakota"
	state.options[50].value="TN";	state.options[50].text="Tennessee"
	state.options[51].value="TX";	state.options[51].text="Texas"
	state.options[52].value="TT";	state.options[52].text="Trust Territories"
	state.options[53].value="UT";	state.options[53].text="Utah"
	state.options[54].value="VT";	state.options[54].text="Vermont"
	state.options[55].value="VI";	state.options[55].text="Virgin Islands"
	state.options[56].value="VA";	state.options[56].text="Virginia"
	state.options[57].value="WA";	state.options[57].text="Washington"
	state.options[58].value="WV";	state.options[58].text="West Virginia"
	state.options[59].value="WI";	state.options[59].text="Wisconsin"
	state.options[60].value="WY";	state.options[60].text="Wyoming"
    ;
	}
else if (country.options[country.selectedIndex].value=='CA') //-- Canada
   {state.length=14  
    state.options[ 0].value="";	state.options[ 0].text="Select a Province"
	state.options[ 1].value="AB";	state.options[ 1].text="Alberta"
	state.options[ 2].value="BC";	state.options[ 2].text="British Columbia"
	state.options[ 3].value="MB";	state.options[ 3].text="Manitoba"
	state.options[ 4].value="NB";	state.options[ 4].text="New Brunswick"
	state.options[ 5].value="NF";	state.options[ 5].text="Newfoundland"
	state.options[ 6].value="NT";	state.options[ 6].text="Northwest Territories"
	state.options[ 7].value="NS";	state.options[ 7].text="Nova Scotia"
	state.options[ 8].value="NU";	state.options[ 8].text="Nunavut"
	state.options[ 9].value="ON";	state.options[ 9].text="Ontario"
	state.options[10].value="PE";	state.options[10].text="Prince Edward Island"
	state.options[11].value="PQ";	state.options[11].text="Providence of Quebec"
	state.options[12].value="SK";	state.options[12].text="Saskatchewan"
	state.options[13].value="YT";	state.options[13].text="Yukon Territory"
    ;
	}
else	
    {	
	state.length=1;
	state.options[ 0].value="";	state.options[ 0].text="Please Select a State"
    }
}}



