$(function() {
  $(".acesso_rapido").change(function() {
    if ($(this).val() != "") {
      window.location.href = $(this).val();
    }
  });
});

