$(document).ready(function() {
	$('select.ProductListVariantSelector').each(function() {
		$(this).hide();
		var str = '';
		for(var i = 0; i < this.options.length; i++) {
			if(!this.options[i].text) continue;
			str += '<span>' + this.options[i].text + '</span>' + (i != this.options.length-1 ? ', ' : '');
		}
		$(this).before(str);
	})
});
