function updateWishSkillFrom( CurrentSkillID, WishSkillID ) {
	var ele1 = $(CurrentSkillID);
	var val1 = parseInt( ele1.options[ ele1.selectedIndex ].value );
	var ele2 = $(WishSkillID);
	var val2 = parseInt( ele2.options[ ele2.selectedIndex ].value );
	
	ele2.options.length=0;
	if( val1 == 4 ){
		var option;
		option = document.createElement('option');
		option.value = 5;
		option.text = "";
		try{
			ele2.add(option, null); // standards compliant
		} catch(err) {
			ele2.add(option); // IE only
		}
	} else {
		for( var i = val1 + 1; i < 5; i++ ) {
			var option;
			option = document.createElement('option');
			option.value = i;
			if(i == val2) {
				option.selected=true;
			}
			if( i == 0 )
				option.text = '1 (poor)';
			else if( i == 1 )
				option.text = '2 (weak)';
			else if( i == 2 )
				option.text = '3 (acceptable)';
			else if( i == 3 )
				option.text = '4 (strong)';
			else if( i == 4 )
				option.text = '5 (perfect)';
			try{
				ele2.add(option, null); // standards compliant
			} catch(err) {
				ele2.add(option); // IE only
			}
		}
	}
}