Hola,
Mira a ver si esto es lo que quieres:
Código PHP:
<html>
<head>
<script type="text/javascript">
function textArea_blur(id)
{
var texto = new String();
texto = "Escribe algo aquí...";
var area = document.getElementById(id);
if(area.value == "")
{
area.value="Escribe algo aquí...";
}
}
function textArea_focus(id)
{
var texto = new String();
texto = "Escribe algo aquí...";
var area = document.getElementById(id);
if(area.value == texto)
{
area.value="";
}
}
</script>
</head>
<body>
<textarea rows="2" cols="20" id="area" onBlur="textArea_blur(this.id)" onFocus="textArea_focus(this.id)">
Escribe algo aquí...</textarea>
</body>
</html>
Si no es lo que quieres vuelve a postear y nos lo miramos.
Saludos!