$(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 += this.options[i].text + (i != this.options.length-1 ? ', ' : '');
		}
		if(this.options.length>1){
			$(this).before('<div class="stocks"><span>'+str+'</span></div>');
		} else {
			$(this).parent().find('.header-variants').hide();
		}
	})
});
