$(document).ready(function () {	$("#state").change(function () 	{		$("#state option:selected").each(function ()		{			if($(this).hasClass("showOption"))			{				$("#showIfClicked").removeClass("hide");				$("#showIfClicked").show();			}			else			{				$("#showIfClicked").addClass("hide");				$("#showIfClicked").hide();				$("#emailOptOutInd").select();			}		});	})});
