$(document).ready(function(){
	// jobseeker reg
	$("#ax_memtype_0").click(function(){
		$("form#register div.current").removeClass("current");
		$("#div-jobseeker").addClass("current");
	});
	// employer reg
	$("#ax_memtype_1").click(function(){
		$("form#register div.current").removeClass("current");
		$("#div-employer").addClass("current");
	});
	// entrepreneur
	$("#ax_memtype_2").click(function(){
		$("form#register div.current").removeClass("current");
		$("#div-entrepreneur").addClass("current");
	});
	// initialize cities
	getother('jcity');
	getother('ecity');
	getother('scity');
});

function getother(id){	
	$('#'+id).change(function() {
		var opt = this.options[this.selectedIndex].value;
		if(opt == '0') $("#specifyother"+id).show(); else $("#specifyother"+id).hide();
	});
}
