var uploadId;
var submitBtn;

function doUpload(){

	var terms = document.getElementById('chAgree');
	if (!terms.checked){
		alert("Before we can accept your application please accept the declaration terms by ticking the declaration box");
		return false;
	}

	var tuayForm = document.getElementById('tuayform');
	
	tuayForm.style.display = 'none';
	document.getElementById('progress').style.display = 'block';
	return true;
}
