Récupérer les données de l'option SELECT JS

//For <select id='brew'> with multiple options :
var brew = document.getElementById('brew');
var myImportantValue = brew.options[brew.selectedIndex].value;
Unsightly Unicorn