function ModifyRegistrationText(){
	var strPath = window.location.pathname;
	var splitUrl = strPath.split("/");
	var pageName = splitUrl[3];
	
	console.log(pageName);

	if (pageName = 'student'){
		$('label[id$="_txtIDNumber_lblTitle"]').text(' University Number - Please enter the first 9 digits, e.g. 000123456 ').append('<span class="required" title="This field is required">*</span>');
		$('label[id$="_emailAddress_lblTitle"]').text('University e-mail address in the following format: ab123@gre.ac.uk ').append('<span class="required" title="This field is required">*</span>');

	}
}
