function checkOptions(opt) {
	for (var intLoop = 0; intLoop < opt.length; intLoop++) {
		if ((opt[intLoop].selected) || (opt[intLoop].checked)) {
			if(opt[intLoop].disabled == true){
				opt[intLoop].selected = false;
				opt[intLoop].checked = false;
			}
		}
	}
}
function checkOption(opt) {
	for (var intLoop = 0; intLoop < opt.length; intLoop++) {
		if ((opt[intLoop].selected) || (opt[intLoop].checked)) {
			if(opt[intLoop].disabled == true){
				opt[intLoop].selected = false;
				opt[intLoop].checked = false;
				opt[intLoop+1].selected = true;
				opt[intLoop+1].checked = true;
			}
		}
	}
}

function clearForm() {

	// Text Fields
	document.getElementById('company').value = "";
	document.getElementById('city').value = "";
	document.getElementById('capacity_standing_max').value = "";
	document.getElementById('capacity_seated_max').value = "";
	document.getElementById('price_person_min').value = "";
	document.getElementById('price_person_max').value = "";

	// Pull Downs
	document.getElementById('county').value = 0;
	document.getElementById('country').value = 0;

	// Multiple Select Boxes
	opt = document.getElementById('state');
	for (var intLoop = 0; intLoop < opt.length; intLoop++) {
		opt[intLoop].selected = false;
		opt[intLoop].checked = false;
		if (opt[intLoop].text == "All") {
			opt[intLoop].selected = true;
			opt[intLoop].checked = true;
		}
	}

	opt = document.getElementById('site_type');
	for (var intLoop = 0; intLoop < opt.length; intLoop++) {
		opt[intLoop].selected = false;
		opt[intLoop].checked = false;
		if (opt[intLoop].text == "All") {
			opt[intLoop].selected = true;
			opt[intLoop].checked = true;
		}
	}

}
