update = d3.select(chart).append("text")
.style("font", "14px sans-serif")
.attr("x", width * Math.random())
.attr("y", height * Math.random())
.attr("dy", "0.35em")
.attr("text-anchor", "middle")
.attr("fill", "black")
.attr("opacity", 1)
.text(change.title)
.transition().remove()
.duration(5000)
.ease(d3.easeLinear)
.attr("fill", "red")
.attr("opacity", 0)