
$(document).ready(function(){function bind_delete(a){var ctype=a.attr("name");var dcid=a.attr("id");a.click(function(){$("#ct_"+ctype).addClass("loading");$.ajax({type:"POST",url:"/ajax/del_ctry.php",data:"id="+dcid+"&ctype="+ctype,success:function(html){$("#list_"+ctype).html(html);$("#ct_"+ctype).removeClass("loading");$(".user_ctry_delete").each(function(){bind_delete($(this));});}});});}
$(".user_ctry_delete").each(function(){bind_delete($(this));});$(".profile_selects select").each(function(){var ctype=$(this).attr("name");$(this).change(function(){if(this.value){$("#ct_"+ctype).addClass("loading");$.ajax({type:"POST",url:"/ajax/save_ctry.php",data:"id="+this.value+"&ctype="+ctype,success:function(html){$("#list_"+ctype).html(html);$("#ct_"+ctype).removeClass("loading");$("select[name="+ctype+"] option:first").attr("selected","selected");$(".user_ctry_delete").each(function(){bind_delete($(this));});}});}
else{$("#ct_"+ctype).removeClass("loading");}});});});