function searchvalidation()
{
	var txt_val=document.getElementById('txt').value;
	if(txt_val==" Search...")
		return false;
	else if(txt_val=='')
		return false;
	else 
		return true;
}
