function redirect(list)
{
    var url = list.options[list.selectedIndex].value;

    if (url != location.href && url != '')
        location = url;
}

$(function()
{
    $("select[name='fixed']").change(function() {redirect(this);});
    $("select[name='rotor']").change(function() {redirect(this);});
});