$(document).ready(function(){checkoutForm = $("body#www-chevronstore-com #checkout #info");  if (checkoutForm.length){      checkoutForm.submit(function(){          if ($.trim($("#referrer select").val()) == '' ){              alert('Please choose a "Business Unit" value');              return false;          }      });  }});
