	function ejemploAJAX(textID){
    var params = "textid=" + textID;
    jQuery.ajax({
        type: "get",
        url: "_include/sections/video.php",
        data: params,
        success: function(respuesta) {
            jQuery('#playerT').html(respuesta);
        }
    }
    );}

