function ResetState()
	{
		//alert(' ResetState begin');
		
		var dropdownCountry = document.getElementById("ctl00_contentPlaceHolderRoot_ucStationInformation_ddlUSCanada");
		
		var dropdownStation = document.getElementById("ctl00_contentPlaceHolderRoot_ucStationInformation_ddlUSCanadaStn");
		
		if ((dropdownCountry != null)&&(dropdownStation != null))
		{
			// set Company to Select...
			dropdownCountry.selectedIndex = 0;
			
			var i;
			for(i = dropdownStation.options.length-1; i>=0; i--)
			{
				//clear Station dropdown list
				dropdownStation.remove(i);
			}

		}

		//alert(' ResetState end');
	}
