function switchsupporttext() {
	supportoption = document.forms['buildpack'].support[document.forms['buildpack'].support.selectedIndex].text
	switch (supportoption) {
		case 'Bronze':
			document.getElementById('supportleveltext').innerHTML = '<ul><li>E-mail support, and support ticket access</li><li>Live chat support in office hours</li><li>Basic setup assistance</li><li>Charged at an additional £10 per year</li></ul>';
			break;
		case 'Silver':
			document.getElementById('supportleveltext').innerHTML = '<ul><li>E-mail support, and support ticket access</li><li>Live chat support in office hours</li><li>Basic setup assistance</li><li>Priority support, via priority e-mail and live support</li><li>Telephone support in normal office hours for basic help (FTP instructions etc)</li><li>Charged at an additional £30 per year</li></ul>';
			break;
		case 'Gold':
			document.getElementById('supportleveltext').innerHTML = '<ul><li>E-mail support, and support ticket access</li><li>Live chat support with extended support hours (8AM-10PM)</li><li>Basic setup assistance</li><li>Priority support, via priority e-mail and live support</li><li>Telephone support in extended office hours (8AM-7PM) for all web hosting issues</li><li>Assistance with configuration of common software (e.g. phpBB, phpNuke, PostNuke, etc)</li><li>General assistance with all getting aspects of your site up and running</li><li>Charged at an additional £100 per year</li></ul>';
			break;
		case 'Basic (free)':
		default:
			document.getElementById('supportleveltext').innerHTML = '<ul><li>E-mail support, and support ticket access</li><li>Included free of charge with all packages</li></ul>';
			break;
	}
}

function printbasicdata() {
	document.write('<ul><li>E-mail support, and support ticket access</li><li>Included free of charge with all packages</li></ul>');
}
