		function getModels() {
			// This function repopulates the Model dropdown based on the Make selected
			
			// Return no. of rows in theModels array
			var arrLen = (theModels.length)
			
			// Clear out the models from the Models dropdown
			document.formQuote.formV123model.options.length = 0;
			document.formQuote.formV123model.options[0] = new Option('Please choose:','?');
			
			// Add in models that match the make
			var listLen = 1;
			var theMake = (formQuote.formV123make.options[formQuote.formV123make.selectedIndex].value)
				for (var i=0; i < arrLen; i++) {
				if (theModels[i][1] == theMake)
				{
			   		formQuote.formV123model.options[listLen] = new Option(theModels[i][0], theModels[i][0]);
	  		    		listLen++;
			 	}
			}
			document.formQuote.formV123model.options[0].selected = true;
			
	  		// Cater for Netscape 4
			if (document.layers)	
				history.go(0); 
		}

