<!DOCTYPE html>
<html>
<head>
<title>Текстовое поле (форма) освобождается от текста при клике</title>
<script type="text/javascript">
function initIntro(){
defaultTxt="This is some opening text This might be your instructions or some other useful info"
document.forms["formname"]["intro"].value = defaultTxt
}
function clrTxt(){
if(document.forms["formname"]["intro"].value==defaultTxt){
document.forms["formname"]["intro"].value = ""
}}
// add onload="initIntro()" to the opening BODY tag
</script>
</head>
<body onload="initIntro()">
<form name="formname">
<textarea name="intro" cols="32" rows="7" onfocus="clrTxt()">sad ыфвыфвфы</textarea>
</form>
</body>
</html>