function Take_action(obj)
	{
				if (obj.value != "North Carolina")
				{
					document.getElementById("district").style.display="none";
					return true;
				}
				else
				{
				    document.getElementById("district").style.display='';
					return true; 
				}
			return false;
		}	