function jump(form){
select = form.getElementsByTagName( 'select')[0];
if( select.options[ select.selectedIndex].value){
form.action = select.options[ select.selectedIndex].value;
}
}