/**
 * @author Brian Schank
 */
	function genRequest(path,id)
	{
		var intSelected = $(id).selectedIndex;
		var strSelected = $(id).options[intSelected].value;
		var args = strSelected;
		var url = path;
		var pars = 'q=' + args;
		
		var myAjax = new Ajax.Updater(
					{success: 'preview'}, 
					url, 
					{
						method: 'get', 
						parameters: pars, 
						onFailure: reportError
					});
		
	}

	function reportError(request)
	{
		alert('Transaction Error: Contact the School of Nursing Webmaster');
	}
