Cześć,
Fajnie działa

Ale jak to przerobić by tekst znów się pojawił w przypadku, gdy użytkownik kliknie na kolejnym polu, wtedy w tym pierwszym nic się już nie wyświetla i wypełniający formularz nie będzie wiedział co tam wpisać.
Cytat
<form action="send_mail.php" method="post" id="form" >
<input type="text" name="user" value="Imię i nazwisko" onFocus="this.value=''" class="input" maxlength="100" tabindex="1" /><br />
<input class="input" type="text" value="adres e-mail" onClick="this.value=''" name="email_address" maxlength="100" tabindex="2"/><br />
Treść:<br />
<textarea class="wiadomosc" rows="10" cols="50" name="comments" tabindex="3"></textarea><br />
<input type="submit" value="Wyślij" tabindex="4"/>
<input type="reset" value="Wyczyść" name="submit" tabindex="5"/>
</form>