function changeState()
{
    var state       = document.univ_list.state;
    var sel_index   = state.selectedIndex;
    var stid        = state.options[sel_index].value;
    var path        = window.location.pathname;

    window.location.href = path + "?v=1&stid=" + stid;
}

