$(document).ready(function(){
  $("#advertiser_form").validate();
  
  $('#how_did_you_hear_about_chango').change(function(){
    if($(this).val() == "other") {
      $('.other_ref').show();
      $('#other_referrer').attr('disabled', '').focus();
    } else {
      $('.other_ref').hide();
      $('#other_referrer').attr('disabled', 'true');
    }
  });
});