$(function(){
	$('#add_child').live("click",function(){
		var amount = document.register_form.child_amount.value;
		
		new_number = (amount*1) + 1;
		
		if(amount){
			$("#loader").html('<img src="images/ajax-loader.gif" />');
		
			$.ajax({
				type: "POST",
				url: "../php/ajax/add_child.php",
				data: "amount="+ amount,
				cache: false,
				
				success: function(html){
					$("#children").append(html);
					$("#loader").remove();
					document.register_form.child_amount.value = new_number;
				}
			});
		}
		return false;
	});
});
