/*
$Id: changeOptions.js,v 1.2 2006/08/16 15:39:44 chrisgraham Exp $
*/

function changeOptions(labels, values, selectBox)
{
	// Empty the dropdown
	selectBox.options.length = 0;

	// Set the new values
	for (var i = 0; i < labels.length; i++)
	{
		selectBox.options[i] = new Option("", values[i]);
		selectBox.options[i].innerHTML = labels[i];
	}
}