001window.onload = ()=>{
002
003 const theSelectElement = document.querySelector('select');
004 theSelectElement.onchange = function(){
005 const selectedValue = theSelectElement.options[theSelectElement.selectedIndex].value;
006 console.log(selectedValue);
007 }
008}