document.addEventListener('DOMContentLoaded', function () { const select = document.getElementById('reason-select'); const button = document.getElementById('evaluate-excuse'); const response = document.getElementById('excuse-response'); button.addEventListener('click', function () { const option = select.options[select.selectedIndex]; const text = option.getAttribute('data-response'); response.textContent = text || "You didn't select anything, but we forgive you anyway."; }); });