var btServicesArray = new Array;

btServicesArray[0] = new Array;
btServicesArray[0][0] = " &gt; About BT Mobile";
btServicesArray[0][1] = "/customerservice/mobile-phone-network-guide/bt-mobile/about.php";

btServicesArray[1] = new Array;
btServicesArray[1][0] = " &gt; Automatic Handset Detection";
btServicesArray[1][1] = "/customerservice/mobile-phone-network-guide/bt-mobile/ahd.php";

btServicesArray[2] = new Array;
btServicesArray[2][0] = " &gt; GPRS";
btServicesArray[2][1] = "/customerservice/mobile-phone-network-guide/bt-mobile/gprs.php";

btServicesArray[3] = new Array;
btServicesArray[3][0] = " &gt; BT Mobile World";
btServicesArray[3][1] = "/customerservice/mobile-phone-network-guide/bt-mobile/bt-mobile-world.php";

btServicesArray[4] = new Array;
btServicesArray[4][0] = " &gt; International Calling";
btServicesArray[4][1] = "/customerservice/mobile-phone-network-guide/bt-mobile/international-calling.php";

btServicesArray[5] = new Array;
btServicesArray[5][0] = " &gt; International Roaming";
btServicesArray[5][1] = "/customerservice/mobile-phone-network-guide/bt-mobile/roaming.php";

btServicesArray[6] = new Array;
btServicesArray[6][0] = " &gt; Voicemail";
btServicesArray[6][1] = "/customerservice/mobile-phone-network-guide/bt-mobile/voicemail.php";

btServicesArray[7] = new Array;
btServicesArray[7][0] = " &gt; Text Bundles";
btServicesArray[7][1] = "/customerservice/mobile-phone-network-guide/bt-mobile/text-bundles.php";

btServicesArray[8] = new Array;
btServicesArray[8][0] = " &gt; Picture Messaging - MMS";
btServicesArray[8][1] = "/customerservice/mobile-phone-network-guide/bt-mobile/mms.php";

function goTo() {
	if (document.mshop.btService.value != "") {
		window.location.href=document.mshop.btService.value;
	}
}


var z = 0;

for (z = 0; z < btServicesArray.length; z++) {
	document.write("<option value=\""
		+ btServicesArray[z][1] + "\">"
		+ btServicesArray[z][0] + "</option>");
}