var productID, productName, productCurrency, productDescription, sipAccess, skypeAccess, localAccess, rechargeable;
$.ajax({
type: "POST",
url: getProductList,
data: reqProductXML,
dataType: "xml",
contentType: "text/xml; charset=\"utf-8\"",
success: function (data) {
$(xml).find('product').each(function() {
productID = $(this).find('id').text();
productName = $(this).find('name').text();
productCurrency = $(this).find('currency').text();
productDescription = $(this).find('description');
sipAccess = $(this).find('sipAccess');
skypeAccess = $(this).find('skypeAccess');
localAccess = $(this).find('localAccess');
rechargeable = $(this).find('rechargeable').text();
$('#urProductSelect').append("");
});
}
}); //End ajax
//I need to use the variable out here....
$('#urProductSelect').change(function() {...});