You have to assign an ID to the form element:
Code:
<textarea id='myTextArea'></textarea>
Then, you add a "for" switch to your label, which refers to that particular ID:
Code:
<label for='myTextArea'>This is my label. If you click here, no matter where I place this label in relation to the textarea, your cursor will go into the textarea</label>