function changeSizes(which) {
    for (var i = 0; i<document.clothes.elements.length; i++) {
        if ((document.clothes.elements[i].type == 'select-one')) {
            document.clothes.elements[i].selectedIndex = which;
        }
	}

}

