function update_cart(id, order_id1, order_id2) {
				$.ajax({
					type: "GET",
					url: domain + "includes/update_ringbuilder.php",
					data: "id=" + id + "&order_id1=" + order_id1 + "&order_id2=" + order_id2,
					success: function(){
						//alert('success');
						window.location.replace(domain + "en/checkout");
					}
				});
			}
