$('document').ready(function () {
    $('#category_select').change(function () {
        location.href = $(this).val();
    });
});

