function populateData( name )
{
	select	= window.document.frm.ket;
	string	= "";
		// 0 - will display the new options only
		// 1 - will display the first existing option plus the new options
	count	= 0;

		// Clear the old list (above element 0)
	select.options.length = count;

		// Place all matching categories into Options.
	for( i = 0; i < arrayData.length; i++ )
    {
		string = arrayData[i].split( "|" );
		if( string[0] == name )
        {
            var hit =  count++;
			select.options[hit] = new Option( string[1] );
        }
    }
}

// Set which option from subcategory is to be selected
//	select.options.selectedIndex = 2;
		// Give subcategory focus and select it
// select.focus();
