 $(document).ready(function(){
  $('#input_2_29').change(function(){
      
      var thisSelection = $('#input_2_29 option:selected').text();
      thisSelection = thisSelection.split(' ');
      thisSelection = thisSelection[0];
      //alert('heello' + thisSelection);
      $('.membership-info').css('display','none');
        $('#' +thisSelection +'.membership-info').fadeIn();
      


  });
})
  

