Prueba este ejemplo:
Código PHP:
<html>
<head>
<script type="text/javascript">
function mostrar() {
f = document.frm;
f.style.display = (f.style.display=='none') ? 'block' : 'none';
}
</script>
</head>
<body>
<img src="algo.jpg" onclick = "mostrar()" />
<form method="post" name="frm" style="display:none">
<textarea></textarea>
</form>
</body>
</html>
Saludos,