$(document).ready(function ()
{
    var dd = $('#alternate-location');
    function jump()
    {
        var where = dd.find('option:selected').attr('value');
        if (where == '')
        {
            return;
        }
        window.location.href = '/admissions/planning/who/'+where;
    }
    dd.change(jump);
});
