$(document).ready(function() {
    
    $("#noticias-categoria").change(function() {
        document.location.href = "noticias-categoria-"+$(this).val();
    });

});