$('select.tabs-nav').change(function() {
     var active = $(this).val();
     $('.tab-content').hide();
     $('.tab-content'+active).show();
});