var tmobileservicesArray = new Array;

tmobileservicesArray[0] = new Array;
tmobileservicesArray[0][0] = " &gt; About T-Mobile";
tmobileservicesArray[0][1] = "about.php";

tmobileservicesArray[1] = new Array;
tmobileservicesArray[1][0] = " &gt; UK Coverage Checker";
tmobileservicesArray[1][1] = "coverage.php";

tmobileservicesArray[2] = new Array;
tmobileservicesArray[2][0] = " &gt; International Calling";
tmobileservicesArray[2][1] = "international.php";

tmobileservicesArray[3] = new Array;
tmobileservicesArray[3][0] = " &gt; Text & Photo Messaging";
tmobileservicesArray[3][1] = "text.php";

tmobileservicesArray[4] = new Array;
tmobileservicesArray[4][0] = " &gt; Caller Tunes";
tmobileservicesArray[4][1] = "caller_tunes.php";

tmobileservicesArray[5] = new Array;
tmobileservicesArray[5][0] = " &gt; T-Zones";
tmobileservicesArray[5][1] = "tzones.php";

function goTo(field, place) {
	var url = field.value;
	if (url != "") {
		window.location.href = url;
	}
}


var z = 0;

for (z = 0; z < tmobileservicesArray.length; z++) {
	document.write("<option value=\""
		+ tmobileservicesArray[z][1] + "\">"
		+ tmobileservicesArray[z][0] + "</option>");
		}