function fetchSolutions() {
	var fetchurl = "fetchsolutions.asp";
	var frmObj = document.frmIndus;
	var formName = "frmsample";
	var showMessage = '<br /><img src="../images/spinner.gif" alt="Rotate" align="absmiddle" hspace="5" border="0">Please wait while we fetch the solutions for this industry.<br /><br />'
	new Ajax.Updater( {
			success: 'solutionResponseDiv',
			failure: 'solutionResponseDiv'
		}, fetchurl, {
			asynchronous: true,
			evalScripts: true,
			insertion: Insertion.Top,
			onLoading: function() {
				$('solutionResponseDiv').update(showMessage);
				$('solutionResponseDiv').show();
			},
			onComplete: function(request) {
	 			if (request.status == 200) {
					$('solutionResponseDiv').update(request.responseText);
				}
			},
			onFailure: function() {
				$('solutionResponseDiv').update('Could not fetch the solutions for this industry, please try again.');
			},
			parameters: Form.serialize(frmObj)
			}
		);
}
