If I understand your problem correctly, you can use some javascript (unverified code):
<script language="JavaScript">
function selectText(textField)
{
textField.focus();
textField.select();
}
</script>
<input type="text" name="sometext" size="100" value="The Text" onClick='selectText(this);'>
You can put a script between your <head> and </head> tags.
source
share