function pajax(urld,target)
{


$.ajax({
			url: urld,
			success: function(answer){
                $(target).html(answer);
            }
		});

}

