 <!--
	
	function UpdateStates(selectedValue) {
		
		var thisDdlControl;
		thisDdlControl = document.form.state;
		
		// Clear the dropdown list.
		var indexCount = thisDdlControl.length
		for(var i = indexCount - 1; i >= 0; i--) {
			thisDdlControl.options[i] = null;
		}
		
		if (selectedValue=='US') {
			document.form.region.disabled = true;
			thisDdlControl.options[0] = new Option('-- Select State --', '--');
			thisDdlControl.options[1] = new Option('Alabama', 'AL');
			thisDdlControl.options[2] = new Option('Alaska', 'AK');
			thisDdlControl.options[3] = new Option('Arizona', 'AZ');
			thisDdlControl.options[4] = new Option('Arkansas', 'AR');
			thisDdlControl.options[5] = new Option('California', 'CA');
			thisDdlControl.options[6] = new Option('Colorado', 'CO');
			thisDdlControl.options[7] = new Option('Connecticut', 'CT');
			thisDdlControl.options[8] = new Option('District of Columbia', 'DC');
			thisDdlControl.options[9] = new Option('Delaware', 'DE');
			thisDdlControl.options[10] = new Option('Florida', 'FL');
			thisDdlControl.options[11] = new Option('Georgia', 'GA');
			thisDdlControl.options[12] = new Option('Hawaii', 'HI');
			thisDdlControl.options[13] = new Option('Idaho', 'ID');
			thisDdlControl.options[14] = new Option('Illinois', 'IL');
			thisDdlControl.options[15] = new Option('Indiana', 'IN');
			thisDdlControl.options[16] = new Option('Iowa', 'IA');
			thisDdlControl.options[17] = new Option('Kansas', 'KS');
			thisDdlControl.options[18] = new Option('Kentucky', 'KY');
			thisDdlControl.options[19] = new Option('Louisiana', 'LA');
			thisDdlControl.options[20] = new Option('Maine', 'ME');
			thisDdlControl.options[21] = new Option('Maryland', 'MD');
			thisDdlControl.options[22] = new Option('Massachusetts', 'MA');
			thisDdlControl.options[23] = new Option('Michigan', 'MI');
			thisDdlControl.options[24] = new Option('Minnesota', 'MN');
			thisDdlControl.options[25] = new Option('Mississippi', 'MS');
			thisDdlControl.options[26] = new Option('Missouri', 'MO');
			thisDdlControl.options[27] = new Option('Montana', 'MT');
			thisDdlControl.options[28] = new Option('Nebraska', 'NE');
			thisDdlControl.options[29] = new Option('Nevada', 'NV');
			thisDdlControl.options[30] = new Option('New Hampshire', 'NH');
			thisDdlControl.options[31] = new Option('New Jersey', 'NJ');
			thisDdlControl.options[32] = new Option('New Mexico', 'NM');
			thisDdlControl.options[33] = new Option('New York', 'NY');
			thisDdlControl.options[34] = new Option('North Carolina', 'NC');
			thisDdlControl.options[35] = new Option('North Dakota', 'ND');
			thisDdlControl.options[36] = new Option('Ohio', 'OH');
			thisDdlControl.options[37] = new Option('Oklahoma', 'OK');
			thisDdlControl.options[38] = new Option('Oregon', 'OR');
			thisDdlControl.options[39] = new Option('Pennsylvania', 'PA');
			thisDdlControl.options[40] = new Option('Rhode Island', 'RI');
			thisDdlControl.options[41] = new Option('South Carolina', 'SC');
			thisDdlControl.options[42] = new Option('South Dakota', 'SD');
			thisDdlControl.options[43] = new Option('Tennessee', 'TN');
			thisDdlControl.options[44] = new Option('Texas', 'TX');
			thisDdlControl.options[45] = new Option('Utah', 'UT');
			thisDdlControl.options[46] = new Option('Vermont', 'VT');
			thisDdlControl.options[47] = new Option('Virginia', 'VA');
			thisDdlControl.options[48] = new Option('Washington', 'WA');
			thisDdlControl.options[49] = new Option('West Virginia', 'WV');
			thisDdlControl.options[50] = new Option('Wisconsin', 'WI');
			thisDdlControl.options[51] = new Option('Wyoming', 'WY');
			thisDdlControl.options[52] = new Option('Armed Forces Americans', 'AA');
			thisDdlControl.options[53] = new Option('Armed Forces Europe', 'AE');
			thisDdlControl.options[54] = new Option('Armed Forces Pacific', 'AP');
		} else if (selectedValue=='CA') {
			document.form.region.disabled = true;
			thisDdlControl.options[0] = new Option('-- Select Province --', '--');
			thisDdlControl.options[1] = new Option('Alberta', 'AB');
			thisDdlControl.options[2] = new Option('British Columbia', 'BC');		
			thisDdlControl.options[3] = new Option('Manitoba', 'MB');
			thisDdlControl.options[4] = new Option('New Brunswick', 'NB');
			thisDdlControl.options[5] = new Option('Newfoundland', 'NL');
			thisDdlControl.options[6] = new Option('Northwest Territories', 'NT');
			thisDdlControl.options[7] = new Option('Nova Scotia', 'NS');
			thisDdlControl.options[8] = new Option('Nunavut', 'NU');
			thisDdlControl.options[9] = new Option('Ontario', 'ON');
			thisDdlControl.options[10] = new Option('Prince Edward Island', 'PE');
			thisDdlControl.options[11] = new Option('Quebec', 'QC');
			thisDdlControl.options[12] = new Option('Saskatchewan', 'SK');
			thisDdlControl.options[13] = new Option('Yukon', 'YT');
		} else {
			document.form.region.disabled = false;
			thisDdlControl.options[0] = new Option('Outside the US', 'OT');
		}
		thisDdlControl.focus();
	}
	// -->