this is simple
document.getElementById('myElement').style.display = 'block'; // show
document.getElementById('myElement').style.display = 'none'; // hide
add a onSelect="selectOptionsupdated(this) in your select
then
function selectOptionsupdated(select){
//do your stuff here
}