$(document).ready(function() {
  var country_checkbox_value = $('input[@name=user[country_code]]:checked').val();
  if (country_checkbox_value == '' || country_checkbox_value == 'ie')
  {
    $('#signup-address').hide();
  }
  
  $('#user_country_code_uk').bind('change', function() {
    $('#signup-address').slideDown();
  });

  $('#user_country_code_ie').bind('change', function() {
    $('#signup-address').slideUp();
  });
});
