 $(document).ready(function(){

    $('.eliminarLineaCarro').live('click', function(){
            var enlace = this.href;

            $.ajax({
                type: "GET",
                url: enlace,
                data: "ajax=1",
                success: function(request){
                    $(".capaCarrito").html(request);
                }
            })

            return false;
    });

    $('.actualizarLineaCarro').live('change', function(){
            var enlace = this.name;
            var uds = this.value;
                        
            $.ajax({
                type: "GET",
                url: enlace,
                data: "uds="+uds+"&ajax=1",
                success: function(request){
                    $(".capaCarrito").html(request);
                }
            })

            return false;
    });

});
