jQuery(document).ready(function() {
  jQuery('.select-nav').change(function() {
    if (this.value != '' && jQuery(this).hasClass('new-window')) {
      window.open(this.value);
    } else if (this.value != '') {
      window.location.href = this.value;
    }
  });
  
});


