
jQuery(document).ready(function($){
	if ($('form#MerchShop').size() < 1) { return; }
	// Action for "Add" icon
	$('#MerchShop img.add').click(function(e) {
		newVal = parseInt($(this).parent('label').children('select').val())+1;
		$(this).parent('label').children('select').val( newVal );
	});
});
