попробуйте так
draw2d.Label.prototype.createHTMLElement=function()
{
var item = draw2d.Figure.prototype.createHTMLElement.call(this);
setInterval(function() {
$.ajax({
type: "POST",
url: "/mnemo_1.php",
//data: "func=1",
dataType: "text",
async: false,
success: function (data){
item.innerHTML = data;
},
error: function(){alert('Problem');}
}).responseText;
}, 1000);
return item;
}