window.onload = removeCards;

function removeCards() {
	$('#creditCard_type option').each(function() {
			if ($(this).val() == 'americanexpress') {
			$(this).remove();
			}});
}

