$(document).ready(function(){
    $(".item input[type=text]")
        .focus(function() {
            $(this).select();
        });

})

