$(document).ready(function(){$("#submit_form").submit(function(){$(".status").html("");var A=$("#base_url").val();$(".processing").html('<span class="successful"><img src="'+A+'images/loading.gif" />Please wait while processing your request ...</span>');$(this).ajaxSubmit({dataType:"json",success:post_add_user});return false});if($("#state").val()!="INTERNATIONAL"){$("#where").parent().hide();match_height()}$("#state").change(function(){if($(this).val()=="INTERNATIONAL"){$(this).parent().next().show()}else{$(this).parent().next().hide()}match_height()})});function post_add_user(jsonResponse){$(".status").html("");response=eval(jsonResponse);if(response.status==1){for(i=0;i<response.message.length;i++){if(response.message[i].error!=""){$("#"+response.message[i].id).prev().css("color","red");$(".processing").append(response.message[i].error);return }else{$("#"+response.message[i].id).prev().css("color","#919395")}}}else{$(".form label").css("color","#919395");$(".form span").css("color","#919395");$(".inside").html('<p>&nbsp;</p><span class="successful">'+response.message+"</span>")}};
