$(function() {
  $('#categorySelect select').change(function(e) {
    if($(this).attr('value') == '-1') {
        return false;
    } 
    url = '/concerts/'+$(this).attr('value')+'.html';
    window.location = url;
  })
});
