Hola:
Aunque no sea una solución que me guste, fíjate en el siguiente código:
Código:
<html>
<body >
<form>
<input type="text" onfocus="temp1 = this.value; this.value = ''; setTimeout('document.forms[0][0].value = temp1', 10)" />
<input type="text" onfocus="temp2 = this.value; this.value = ''; setTimeout('document.forms[0][1].value = temp2', 10)" />
<input type="text" onfocus="temp3 = this.value; this.value = ''; setTimeout('document.forms[0][2].value = temp3', 10)" />
</form>
</body>
</html>
Saludos