jquery select by class and use as this code example
Example 1: jquery selector this and class
$(".class").click(function(){
$(this).find(".subclass").css("visibility","visible");
});
Example 2: jquery find selected option by class
$(this).find('option:selected').attr("name");