$(document).ready(function() {
	$('.center_form').load(form_id+'_form.php');
});

function send_post(){
		$.post('capcha/form_'+form_id+'.php', $('.center_form form').serializeArray(),
		function(data){
			$('.center_form').empty().html(data);
		 });
}

