function listenerPlantillasEtiquetado(id) {
	if ($(id).val() !== undefined){
		var opc1 = $(id).attr('data-event');
		var opc2 = $(id).attr('data-eventType');
		var opc3 = $(id).attr('data-eventDetail');
		var opc4 = $(id).attr('data-eventDetailExtra');
		newGtmObject(opc1, opc2, opc3, opc4);
    }
}

function newGtmObject(opc1, opc2, opc3, opc4){
    dataLayer.push({ 
        'event': opc1,
        'eventType': opc2,    
        'eventDetail': opc3, 
        'eventDetailExtra': opc4 
    }); 
}