function clearContact() {
	var name = document.getElementById('namebox');
	var country = document.getElementById('countrybox');
	var email = document.getElementById('emailbox');
	var tel = document.getElementById('telbox');
	var enquiry = document.getElementById('enquirybox');
	
	name.onfocus = function() {
		this.value = '';
	}
	country.onfocus = function() {
		this.value = '';
	}
	email.onfocus = function() {
		this.value = '';
	}
	tel.onfocus = function() {
		this.value = '';
	}
	enquiry.onfocus = function() {
		this.value = '';
	}
}

addLoadEvent(clearContact);