$(document).ready(function() {
	$('.span_errors').each(function() {
		$(this).clone().appendTo($(this).parent().parent().find("td"));
		$(this).remove();
	});
});