$(document).ready(function() {
  $("select.menu").each(function(i) {
    $(this).change(function(evt) {
      window.location.href = this.options[this.selectedIndex].getAttribute('href');
    });
  });
});
