$(document).ready(function(){
		var cPrice = 40.00;
		var rPrice = 50.00;
		var pachetPrice = 130.00;
		var intitPrice = 0;
		
		computeTOTAL ();
	
	function computeTOTAL (){
		selectedItm = $('#selectBox').val();
		
		if(selectedItm == 'CD Romanian IT&C Directory 2008'){
			price = cPrice;	
		}
		else if(selectedItm == 'CD Romanian Financial Directory 2008-2009'){
			price = rPrice;
		}
		else if(selectedItm == 'Pachet RFD (Carte + CD)'){
			price = pachetPrice;
		}
		else{
			price = 0;	
		}
		
		howMany = $('#amountBox').val(); 
		
		$('#itmPrice').html("" + price + "");
		$('#pretTOTAL').html(""+ (price * howMany).toFixed(2) +"");
		//$('#pretTOTAL').html("" + price * howMany + "");
	}
	
	$('#computeTotalBtn').click(function(){
		computeTOTAL();			
		return false;
	});
	
	$('#amountBox').change(function(){
		computeTOTAL();									 
	});
	
	$('#selectBox').change(function(){
		computeTOTAL();									 
	});
	
});



