function updBid(lotID) {
	$.ajax({
		url: "/auctions/lot-" + lotID + "/check/",
		cache: false,
		success: function(response){
			$("#bidContainer" + lotID).html(response);
		}
	});
}
