// This JavaScript clears all text in the 'Search' box when clickedfunction clearDefault(el) {if (el.defaultValue==el.value) el.value = ""}
