function copyAddress() {
	if (document.Form1.chkCopyAddress.checked == true) {
		document.Form1.txtPayAddress.value = document.Form1.txtAddress.value;
		document.Form1.txtPayZipCode.value = document.Form1.txtZipCode.value;
		document.Form1.txtPayCity.value = document.Form1.txtCity.value;
		document.Form1.cmbPayCountry.value = document.Form1.cmbCountry.value;
	}
}
