$(function(){
  $('.register-form #sfApplyApply_country').change(function(){
    var val = $(this).val();
     
    $('.register-form .region')
      .hide()
      .find('select')
      .attr('disabled', 'disabled');
    
    $('.register-form .region.' + val)
      .show()
      .find('select')
      .removeAttr('disabled');
  });

  $('.register-form #sfApplyApply_country').trigger('change');

  $('.button-print').bind('click', function() {
    window.print();
    return false;
  });
});



