function searchform(thisform)
{
	if (thisform.zipcode.value.length < 1)
		alert('Please input your Zip code.');
	else
		thisform.submit();
	return false;
}