$(document).ready(function()
	{
		//Move the field error inline and after the field.
		$("tr td:last-child").each(function()
			{
               error =  $(this).children("div.error").text();
               if(error != null || error != "")
               {
			     $(this).children("div.error").remove();
			     $(this).append('<span class="error">'+error+'</span>')
               }		
			});
	
	});
