$(document).ready(function() {
	$("input#search-text").focus(function () {
		 $(this).val('');					
         $(this).css('color','#444');
    });
});