var loading = "<img src='/images/load_icon.gif'/>";
//отправка запроса
function get_ajax(url,send,div_reload)
{
	$(div_reload).html($(div_reload).html()+loading);
	if (!type) type='';
	$.ajax({
		type: "POST",
		url: url,
		cache: false,
		data: send,
		success: function(html){
			$(div_reload).html(html);
		}
	});
}
