// JavaScript Document

 // Create text string from array powered dependent fields select form.
 // Results to be submitted to the Power Search function.
 function SearchItemsList() {
 	var myForm1=document.form2
             var selMake=document.getElementById('showMake')
             var selModel=document.getElementById('showModel')

  	myForm1.Search.value=document.SearchForm.Year.value + " " + selMake.options[selMake.selectedIndex].text + " " + selModel.options[selModel.selectedIndex].text

}