/*
 * Copyright (c) t0w5a (tD)
 * development by multeek
 */
function getAjaxProductInfo(selectElement)
{
	var productId	= $.trim($(selectElement).val());
	var selectNr	= $(selectElement).attr('id');
	if(productId !== '')
	{
		/*$.ajax({
			   type: "GET",
			   url: "sheet/product",
			   data: "id="+productId,
			   success: function(msg){
			     alert( "Data Saved: " + msg );
			   }
			 });*/
		$.getJSON('sheet/product', 
				'id='+productId, 
				function (data, textStatus) {
					// data will be a jsonObj
					// textStatus will be "success"
					if(textStatus == 'success')
					{
						jQuery.each(data, function(index, obj) {
							//alert('#'+selectNr+'-'+index);
							if($('#'+selectNr+'-'+index).length > 0)
							{
								$('#'+selectNr+'-'+index).html(obj.value);
							}
						});
					}
				})
	}
}