Thanks guys for the reply, to resolve this i applied this to all the textboxes like this

Code:
  $(document).ready(function() 
    {
         $("input:text").focus(function() 
         { 
         $(this).select(); 
         } 
         );
     });

Thanks