function loadContent(place, message){
	//alert(message);
	$('#'+place).replaceWith('<div id="'+place+'">'+message+'<input type="hidden" name="total" value="'+message+'" /></div>');
}

function caclculateorder(tip, nr){
	//alert(tip);
	if(isNaN(nr) || nr==0 || nr > 99){
		alert("Va rugam sa completati corect numarul de cartele! (min 1 buc max 99 buc)");
		return false;
	}
	price = 0;
	if(tip=="ELECTRA")
		price = 12;
	if(tip=="ICPE")
		price = 18;
	total = nr*price + 20;
	totalmsg = total+" RON";
	loadContent("totalcomanda", totalmsg);
	return true;
}
