<select name="secimler" id="secimler" onchange="git()">
<option value="a">a seçeneği</option>
<option value="b">b seçeneği</option>
</select>
<script>
funtion git(){
if (document.getElementById("demo").value == a){
window.location.href = "http://www.google.com";
} else {
window.location.href = "http://www.facebook.com";
}
}
</script>