

// Removes default value from form field:
window.onload = function() {
  document.getElementById('search-txt').onfocus = function() {
    this.value = '';
  }
}