function gotourl()
{
 selectbox = document.getElementById('brands');
 
 newLocation = selectbox.options[selectbox.selectedIndex].value;


 window.location = "voertuigen.php?brand=" + newLocation;
}