
function clearPCsearch() {
  if (document.getElementById) {
	  var searchBox = document.getElementById("pcq");
  		searchBox.onclick = function () {
  			if (searchBox.value == "Postcode...") {
  			  searchBox.value = "";
  			}		
		}
	}
}
addLoadListener(clearPCsearch);

