jQuery.fn.getprice = function(itemID){
	var b = this;
	$.post('/ajax-get-item.php?item_id='+itemID,
			function(data) { 
			   	jQuery(b).html(data);
    		}
	);
};

