window.onload = function () { var continent = document.getElementById('continent'); var city = document.getElementById('city'); if (continent != null && city != null) { continent.addEventListener('change', function(event) { hideTimezoneCities(city, continent.options[continent.selectedIndex].value, true); }); hideTimezoneCities(city, continent.options[continent.selectedIndex].value, false); } }; /** * Add the class 'hidden' to city options not attached to the current selected continent. * * @param cities List of