$(document).ready(function() {
$('li input[type=text]').attr('value', 'Search The Shop');
$('li input[type=text]').focus(function() {
 $(this).attr('value', '');
 });
});
