// JavaScript Document
turnOnItem = function(dropdown)
		{
			dropDownID = document.getElementById(dropdown);
			dropDownID.style.display = "block";	
		}		
		
turnOffItem = function(dropdown)
		{
			dropDownID = document.getElementById(dropdown);
			dropDownID.style.display = "none";	
		}				
		
function provStateChanger(){
selectedCountry = document.getElementById("COUNTRY");
	if( (selectedCountry.value == 'Canada') || (selectedCountry.value == 'United States'))
	{
		switch(selectedCountry.value)
		{
			case "Canada":
				turnOnItem("state_Canada");
				turnOffItem("state_US");
				turnOffItem("state_India");
				turnOffItem("state_txt");
			break;
				
			case "United States":
				turnOnItem("state_US");
				turnOffItem("state_Canada");
				turnOffItem("state_India");
				turnOffItem("state_txt");
			break;
		}
				
	}
	
	else if(selectedCountry.value != " ")
	{
		if (selectedCountry.value == "India")
		{
				turnOnItem("state_India");
				turnOffItem("state_Canada");
				turnOffItem("state_US");
				turnOffItem("state_txt");
		}
		else
		{
				turnOnItem("state_txt");
				turnOffItem("state_US");
				turnOffItem("state_Canada");
				turnOffItem("state_India");
		}

	}
};
