function ajax(url, id)
{
	$.ajax({
		type: "POST",
		url: url,
		success: function(msg){
			$(id).html(msg);
		}
	});
}
