function combo(select) {
url = select.options[select.selectedIndex].value;
if(url != "--") {
document.location.href = url;
}
}
