// JavaScript Document

function updateCart(form){
	
	var attribute = $(".form-select");
	
	if( attribute.length > 0){

		//update cart
		var value = parseInt(parent.document.getElementById("shoppingcart").innerHTML);
		parent.document.getElementById("shoppingcart").innerHTML = value + 1;
	}	
	
}
