function eurocarSelectPart(part, formFieldId) {
	htmlSelect = document.getElementById(formFieldId);
	if (htmlSelect) {
		var intIndex = 0;
		for (intIndex = 0; intIndex < htmlSelect.length; intIndex++) {
			if (htmlSelect.options[intIndex].value == part) {
				break;
			}
		}
		htmlSelect.options[intIndex].selected = true;
	}
}

