
var sel_collection = document.getElementById("select_collection")
sel_collection.onchange = function(){
	var chosenoption=this.options[this.selectedIndex]
	if (chosenoption.value != ''){
		location.href = '/fabrics/'+chosenoption.value+'/';
	}
}
