function go ( select )
{
       option = select.options[ select.selectedIndex ];
       action = select.form.action + '/' + option.value;
       select.form.action = action;
       select.form.submit();
}

