
<!-- JAVASCRIPT INCLUDE for US DEALER LOCATOR-->

		
// WORLD DISTRIBUTORS FORM VALIDATION //
function checkCountry() {
	var Index = document.getElementById("country").selectedIndex
	if(Index != 0) {
		document.dealerlocator.submit();
	} else {
		alert("You must select a Country")
		return false;
	}	
}		
	
<!-- JAVASCRIPT INCLUDE for US DEALER LOCATOR-->

