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