function add_to_cart(product_id,count_el_id)
{
	count = document.getElementById(count_el_id).value;
	$.ajax({
		  url: '/cart_ajax.php?ProductID='+product_id+'&Count='+count,
		  success: function(data) {
			 $("#short_cart").html(data)
		  }
	});

}
