If you are sure that it will always be the third element in the class, you can do this:
$('.item-selection-amount').click(function(){ console.log($(this).attr('class').split(' ')[2]); });
This breaks the class into spaces and pulls out the third element.
However, if you are trying to store product information in the class field. The best option would be to use the data attribute, which is supported in HTML5 (and will not break anything in older browsers other than HTML5). For instance:
<li class="item-selection-amount" data-price="66.00">My Product</li>
source share