$(document).ready(function() {
	var sdFormSelectSpan = (function(){
	    $('select.select').each(function() {
	        var title = $(this).attr('title');
	        $(this).css({
					'z-index': 10,
		            'opacity': 0,
		            '-khtml-appearance': 'none'
		        }).after(
					'<span class="select radiusAll">' + title + '</span>'
				).change(function() {
					val = $('option:selected', this).text();
		            $(this).next().text(val);
				});
	    });
	})();
});
