Connect With Us
function validateForm() {
var countrySelect = document.getElementById("country");
var provinceSelect = document.getElementById("00NJR000005LkzT");
// Country and Province validation
if (countrySelect.value !== "Canada") {
if (provinceSelect.value !== "Other") {
alert("If the Country is not Canada, please set the Province to 'Other'.");
return false; // Prevent form submission
}
} else { // If the country is Canada
if (provinceSelect.value === "Other") {
alert("If the Country is Canada, the Province cannot be 'Other'.");
return false; // Prevent form submission
}
}
return true; // Allow form submission
}