$(document).ready(function() {

jQuery("#customer_type").change(function () {
  var val = jQuery(this).val();
 
  jQuery(".div").hide();
  jQuery(".div[data-id='"+val+"']").show();
  
});

});
