Stryx NEWS

be a part of our success

Join us today

document.addEventListener('DOMContentLoaded', function () { function setupForm(form) { const program = form.querySelector('select[name="bu"]'); const school = form.querySelector('.school-options'); if (!program || !school) { return; } // Hide initially school.style.display = 'none'; program.addEventListener('change', function () { console.log('Program selected:', this.value); if (this.value === 'Stryx ASA (After School Activities)') { school.style.display = 'block'; } else { school.style.display = 'none'; school.querySelectorAll('input[type="radio"]').forEach(function (radio) { radio.checked = false; }); } }); } document.querySelectorAll('.wpcf7-form').forEach(setupForm); });