function feedback()
{
   if (document.forms[0].text.value.length == 0)
   { 
      document.getElementById("error").className = "item_red";
      document.getElementById("error").innerHTML = "<h3>Valuation</h3><p>You must input your valuation.</p>"
   }
   else
   {    
      document.feedback.submit();
   }
}