$(document).ready(function() {
  // hide shirts by default
  $("#edit-shirtsize").parent("div").hide();
  // on init or change, check to see if we're on a level 2
  $("#edit-clinic").change(function() {
    $("#edit-clinic option:selected").each(function () {
      if ($(this).text().indexOf("(Level 2)") > 0) {
         $("#edit-shirtsize").parent("div").show();
      } else {
         $("#edit-shirtsize").parent("div").hide();
      }
    });
  }).trigger('change');
});

