*To adjust your preferences at any time, visit the Acuity Brands Subscription Center

const countrySelect = document.querySelector(".country select"); const usaValue = document.querySelector(".country select option:nth-child(2)").value; const optin = document.querySelector(".Opt_In"); optin.style.display = "none"; countrySelect.addEventListener("change", displayOptIn); function displayOptIn() { const selectedCountry = countrySelect.value; if (selectedCountry != usaValue && selectedCountry != "") { optin.style.display = "block"; } else { optin.style.display = "none"; } }; displayOptIn();