
<!--

lstFieldDisplay = new Array ("---Choose One---",
"Hotel Arihant", 
"Hotel Vardhmaan" 
);

function form_drop_down( strControl, strPreviousValue, lstValues, lstDisplay ) {

	document.write( '<select name="');
	document.write( strControl );
	document.writeln(	'">');
	iFldCnt = lstValues.length;
	iFld = 0;
	if (strPreviousValue == "")
	{
		strPreviousValue = lstValues[0];
	}
	
	while( iFld < iFldCnt )
	{
		document.write( '<option value="');
		document.write( lstValues[ iFld ] );
		document.write( '" ');
		if( strPreviousValue == lstValues[ iFld ] )
		{
			document.write( 'selected' );
		}
		document.writeln( '>');
		document.write( lstDisplay[ iFld ] );
		document.write( '</option>');
		iFld ++;
	}
	document.write( '</select>');
}
// -->
