/************************************************************
JBE Form Utilities

Platforms: IE 5.0+

Dependencies
- none

To Do
- None at this time

Revision History
Keys: [NEW] New Feature
      [FIX] Bug fix
      [COM] Comment
      [IMP] Improvement

11/01/02 Rick Englert
[COM] Initial Release
*/
function add_option(listname,showtxt,passvalue) { 
	listname.length++; 
	listname.options[listname.length-1].value = passvalue; 
	listname.options[listname.length-1].text = showtxt; 
} 

