реализация кнопки clear в формах 
 Вариант 1:  <form name="form1" method="post" action="" id="contact"> <input type="text" name="text1" style="" class=""> <input type="submit" name="submit" value="submit" class="input"> <input type="reset" name="reset" value="reset" class="input"> </form> Описание класса css: .input { border: #56889F 1px solid; width: 218px; height: 18px; background-color: #EFEEEE; font-size: 11px; color: #000000;}</ul>  Вариант 2:  <form name="form1" method="post" action="" id="contact"> <a href="#" onClick="forms['contact'].reset()"></a> <a href="#" onClick="forms['contact'].submit()"></a> <br></form>  Вариант 3:  <head> <script type="text/javascript"> function clrFr(){ var myForm=document.getElementById("myForm"); var elements=myForm.elements; for(var i=0; i<7; i++) elements[i].value=''; } </script> </head> <form style="margin:0" name="myForm" id="myForm"> <input type="image" src="images/clear.jpg" style="margin-left: 0px;" onclick="javascript:document.forma.reset();"> <input type="image" src="images/send.jpg" style="margin-left: 13px;"> </form>
 Вариант 4:  <a href="#" onClick="clrFr()">