function RentBoxes() {
	for (x=100;x<=1000;x+=50) {
		document.writeln('<option value="'+x+'">£'+x+'</option>');
	}
}