Basic shop car

I am creating a basic shop car, you choose a product you drag to shop car, after this it goes to appear in a dynamic field the price, this I did.
my problem.
when I drag a product to a shop car, it I appear the price but when I drag one another product, I didn´t make it to add these two values, it he only changes the value for as the new product.
how I would make to add?
I have 6 products.
my AS.


//
var nProduto1:Number = new Number (199);
var nProduto2:Number = new Number (600);
var nProduto3:Number = new Number (1200);
var nProduto4:Number = new Number (199);
var nProduto5:Number = new Number (300);
var nProduto6:Number = new Number (350);
//----------------------------------------------------------------------------------------------
//arrastar e soltar Produto 1
produto1_mc.onPress = function () {
	this.startDrag ();
	if (this.hitTest (carrinho_mc)) {
		total_txt.text = nProduto1;
	}
};
produto1_mc.onRelease = function () {
	produto1_mc.stopDrag ();
};
//arrastar e soltar Produto 2
produto2_mc.onPress = function () {
	this.startDrag ();
	if (this.hitTest (carrinho_mc)) {
		total_txt.text = nProduto2;
	}
};
produto2_mc.onRelease = function () {
	produto2_mc.stopDrag ();
};
//arrastar e soltar Produto 3
produto3_mc.onPress = function () {
	this.startDrag ();
	if (this.hitTest (carrinho_mc)) {
		total_txt.text = nProduto3;
	}
};
produto3_mc.onRelease = function () {
	produto3_mc.stopDrag ();
};
//arrastar e soltar Produto 4
produto4_mc.onPress = function () {
	this.startDrag ();
	if (this.hitTest (carrinho_mc)) {
		total_txt.text = nProduto4;
	}
};
produto4_mc.onRelease = function () {
	produto4_mc.stopDrag ();
};
//arrastar e soltar Produto 5
produto5_mc.onPress = function () {
	this.startDrag ();
	if (this.hitTest (carrinho_mc)) {
		total_txt.text = nProduto5;
	}
};
produto5_mc.onRelease = function () {
	produto5_mc.stopDrag ();
};
//arrastar e soltar Produto 6
produto6_mc.onPress = function () {
	this.startDrag ();
	if (this.hitTest (carrinho_mc)) {
		total_txt.text = nProduto6;
	}
};
produto6_mc.onRelease = function () {
	produto6_mc.stopDrag ();
};
//

sorry about my english