var onchange;
var test;
var timer;
var seconds;
var ignore = false;

function redirect() {

//jQuery("#selectorCountry form select").attr("onchange",onchange);
//jQuery("#selectorCountry form select").trigger("change");
window.open(jQuery("#selectorCountry form select").val());

jQuery("#selectorCountry form select").val(0);
 faceclose();
}

function decrement() {
if(seconds==0) {
redirect();
return;
}
jQuery(".mbetime").text(seconds);
seconds--;
timer = setTimeout('decrement();',1000);


}

function faceclose() {
	//jQuery("#selectorCountry form select").val(0);
	clearTimeout(timer);
	jQuery("#facebox").remove();
}

jQuery(document).ready(function() {
 //onchange = jQuery("#selectorCountry form select").attr("onchange");
 //jQuery("#selectorCountry form select").attr("onchange","");
 jQuery("#selectorCountry form select").change(function() {
  if(jQuery("#selectorCountry form select").val()==0) return;
  if(ignore) return;
  seconds = 5;
  var text = jQuery("#selectorCountry form select option:selected").text();
  if(text == "MBE France") {
  window.location = jQuery("#selectorCountry form select").val();
  }
  else {
   if(jQuery("#mbego")!=null) {

   jQuery("#mbego").remove();
    faceclose();
   }
   jQuery("#selectorCountry").append('<div id="mbego" style="display:none;">You will be redirected to <b>'+ text +'</b> in <span class="mbetime">5</span> seconds. If you want to be redirected now click <a href="javascript:void(0)" onclick="javascript:redirect();">here</a>.</div>');
   timer= setTimeout('decrement();',1000);
   jQuery.facebox({ div: '#mbego' });
  }
});
});
