function select_location(strLocation)
{
	location.href = "/cfm/zipmatch.cfm?loc=" + strLocation;
}

function select_premium_pack(PackNumber)
{
	for (var intCount = 1; intCount <= 4; intCount++)
	{
		if (intCount != PackNumber) 
		{		
			document.getElementById("PremiumPack" + intCount).selectedIndex = 0;
			document.getElementById("PremiumPack" + intCount).disabled = true;
		}
	}
	
	document.getElementById("PremiumPack" + PackNumber).disabled = false;
}


