
function resetExerciseForm() {
	//$('#ExerciseName').val("");
	document.getElementById('ExerciseName').value = "";
	document.getElementById('ExerciseName').style.backgroundColor = '#ffffff';

	document.getElementById('ExerciseStartingpositionId').selectedIndex = -1;
	document.getElementById('ExerciseStartingpositionId').style.backgroundColor = '#ffffff';

	document.getElementById('ExerciseMainmuscleId').selectedIndex = -1;
	document.getElementById('ExerciseMainmuscleId').style.backgroundColor = '#ffffff';

	document.getElementById('ExerciseDifficultyId').selectedIndex = -1;
	document.getElementById('ExerciseDifficultyId').style.backgroundColor = '#ffffff';

	document.getElementById('ExerciseDeviceId').selectedIndex = -1;
	document.getElementById('ExerciseDeviceId').style.backgroundColor = '#ffffff';

	document.getElementById('ExerciseSymptomId').selectedIndex = -1;
	document.getElementById('ExerciseSymptomId').style.backgroundColor = '#ffffff';

	document.getElementById('ExerciseOrientationId').selectedIndex = -1;
	document.getElementById('ExerciseOrientationId').style.backgroundColor = '#ffffff';

}

