  //- Handle selected item to textbox move...
  function fvSelectText(cboText,txtEdit)
		 {
			//- Set select box text into edit area...
   txtEdit.value = cboText.value; 
			//- Change selection to standard user info...
			cboText.value = '[X]';			
			}
			
