Браузер какой? В хроме все пучком:
<div id="ff" style="width:100px;height:100px;background-color:#ccc">
<input type="text" value="wow" id="my_input" style="display:none" />
</div>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<script>
$("#ff").click(function(){
$("#my_input").show();
$("#my_input").focus(function(){
$(this).select();
});
$("#my_input").focus();
});
</script>