function aussieStates()
{
  var c = $("#country").val();
  switch (c)
  {
    case 'AU':
      $("#state").parents(".form_row").hide();
      $("#state").attr("name","state_other");
      $("#state_au").parents(".form_row").show();
      $("#state_au").attr("name","state");
      break;
    default:
      $("#state_au").parents(".form_row").hide();
      $("#state_au").attr("name","state_au");
      $("#state").parents(".form_row").show();
      $("#state").attr("name","state");
  }
}

function changeState()
{
  $("#country").change(function(){
    aussieStates();
  });
}



/* onDocumentReady Call */
$(function(){

  if ($("#country").length > 0) {
    aussieStates();
  }
  changeState();
});

