function dropDefaultText(fldname, def, res) {
	var fld = document.getElementById(fldname);
	if (res == 1 && fld.value == '') fld.value = def;
	else if (fld.value == def) fld.value = '';
}

$(document).ready( function () {
	
	$('select#countryDropDown').change ( function () {
		if (this.value != '')
		{
			document.location.href = this.value;
		}
	});

});