$j(document).ready(
  function() {
    $j('.my-skinnable-select').each(
      function(i) {
        selectContainer = $j(this);
        // Remove the class for non JS browsers
        selectContainer.removeClass('my-skinnable-select');
        // Add the class for JS Browers
        selectContainer.addClass('skinned-select');
		
		var title = "";
		$j("#attribute76 option[value='" + title + "']").hide();
		
        // Find the select box
        selectContainer.children().before('<div class="select-text">a</div>').each(
          function() {			
            $j(this).prev().text(this.options[1].innerHTML);
			$j(this).prev().attr('id', 'value-'+this.options[1].innerHTML);
			$j("#attribute76 option[value='" + title + "']").hide();
			

          }
        );
        // Store the parent object
        var parentTextObj = selectContainer.children().prev();
        // As we click on the options
        selectContainer.children().click(function() {
          // Set the value of the html
		  $j("#attribute76 option[value='" + title + "']").hide();
          parentTextObj.text(this.options[this.selectedIndex].innerHTML);
		  parentTextObj.attr('id', 'value-'+this.options[this.selectedIndex].innerHTML);		 
		  
        })        
      }
    );
  }
);

