function change_subcats(location,catID){
	$.post(location+"comanda/get_subcat_options",{catID:catID},function(data){
		$('#tdProdusSelect').html(data);
	});
}
function sterge_produs(trID){
	//alert(trID);
	var confirmare=confirm('Sunteti sigur ca doriti stergerea aceastui produs?');
	var table = document.getElementById('tableForm');
	var tbody= table.getElementsByTagName("tbody")[0];
	var oldtr = document.getElementById('produseAlese_'+trID);
	if(confirmare==true){
		tbody.removeChild(oldtr);
	}else{
		return;
	}
}