﻿/// <reference path="jquery.min-vsdoc.js" />

/*  ContactForm.js
    Populate the country code for the phone number with the correct code for the country in the country drop down
*/

$(document).ready(function() {

	$(".countryCode").attr("readonly", true);

	var countryData;
	var updateCountryCodes = function() {

	if ($(".countryCodeDropDown").val() != "") 
		{
			$(".countryCode").val(countryData[$(".countryCodeDropDown").val()].DialingCode);
		}
		if ($.trim($(".countryCode").val()) != '') 
		{
			$(".countryCode").attr("readonly", true);
		}
		else 
		{
			$(".countryCode").attr("readonly", false);
		}
	};

	$.getJSON('/zone/CodeBase/Helpers/JavaScriptHelper.aspx?command=countriesWithDialCodes', null, function(data) {
		countryData = data;
		updateCountryCodes();
	});

	$(".countryCodeDropDown").change(updateCountryCodes);
});
