
function goHQ () {
	try {
		var area = document.getElementById('area');
		visitHQ = area.options[area.selectedIndex].value;
		
		if (visitHQ.length > 0) {
			location.href = 'our-stores.php#'+visitHQ;
		}
	
	} catch (e) {
		alert(e);
	}
}

