 $(document).ready(function() {
 	// Find all of the size selects
 	$('.genericProductSizeSelect').bind('change', function() {
 		genericProductsAddProductsNameUpdate(this);
 	});
 	
 	$('.genericProductSizeSelect').each(function() {
 		genericProductsAddProductsNameUpdate(this);
	});
 });
 
function genericProductsAddProductsNameUpdate(input) {
	// Find the child input of the parent form  of class genericProductaddProducts
	$(':input.genericProductAddProducts', $(input).parent('form').get(0)).attr('name', 'addProducts[Generic][' + $(input).val() + ']');
}